diff options
Diffstat (limited to '')
-rw-r--r-- | common/exechelp-w32ce.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/common/exechelp-w32ce.c b/common/exechelp-w32ce.c index 710c828d2..e208f6e2f 100644 --- a/common/exechelp-w32ce.c +++ b/common/exechelp-w32ce.c @@ -796,6 +796,15 @@ gnupg_wait_process (const char *pgmname, pid_t pid, int hang, int *exitcode) } +/* See exechelp.h for a description. */ +gpg_error_t +gnupg_wait_processes (const char **pgmnames, pid_t *pids, size_t count, + int hang, int *r_exitcodes) +{ + return gpg_error (GPG_ERR_NOT_IMPLEMENTED); +} + + void gnupg_release_process (pid_t pid) { |