diff options
Diffstat (limited to 'src/gpg-error.h.in')
-rw-r--r-- | src/gpg-error.h.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gpg-error.h.in b/src/gpg-error.h.in index 4e982fc..0af8ef5 100644 --- a/src/gpg-error.h.in +++ b/src/gpg-error.h.in @@ -1089,8 +1089,12 @@ void _gpgrt_log_assert (const char *expr, const char *file, int line, /* * Spawn functions */ +/* Child process is detached to parent process. */ #define GPGRT_PROCESS_DETACHED (1 << 1) +/* Child process has no console (Windows only). */ +#define GPGRT_PROCESS_NO_CONSOLE (1 << 2) + /* Specify how to keep/connect standard fds. */ #define GPGRT_PROCESS_STDIN_PIPE (1 << 8) #define GPGRT_PROCESS_STDOUT_PIPE (1 << 9) |