summaryrefslogtreecommitdiff
path: root/cryptopp/GPGw/pipeexec.h
diff options
context:
space:
mode:
Diffstat (limited to 'cryptopp/GPGw/pipeexec.h')
-rw-r--r--cryptopp/GPGw/pipeexec.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/cryptopp/GPGw/pipeexec.h b/cryptopp/GPGw/pipeexec.h
new file mode 100644
index 0000000..241e071
--- /dev/null
+++ b/cryptopp/GPGw/pipeexec.h
@@ -0,0 +1,24 @@
+#ifndef __PIPEEXEC_H__
+#define __PIPEEXEC_H__
+
+#include <windows.h>
+
+// typen
+typedef enum
+{
+ pxSuccess,
+ pxSuccessExitCodeInvalid,
+ pxCreatePipeFailed,
+ pxDuplicateHandleFailed,
+ pxCloseHandleFailed,
+ pxCreateProcessFailed,
+ pxThreadWaitFailed,
+ pxReadFileFailed,
+ pxBufferOverflow
+}
+pxResult;
+
+pxResult pxExecute(char *acommandline, char *ainput, char **aoutput, LPDWORD aexitcode);
+
+#endif // __PIPEEXEC_H__
+