diff options
Diffstat (limited to 'gpgme/w32-io.c')
-rw-r--r-- | gpgme/w32-io.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gpgme/w32-io.c b/gpgme/w32-io.c index f0d31a0f..92dac0a7 100644 --- a/gpgme/w32-io.c +++ b/gpgme/w32-io.c @@ -598,6 +598,17 @@ _gpgme_io_waitpid ( int pid, int hang, int *r_status, int *r_signal ) return ret; } +int +_gpgme_io_kill ( int pid, int hard ) +{ + HANDLE proc = fd_to_handle (pid); + + #warning I am not sure how to kill a process + /* fixme: figure out how this can be done */ + return 0; +} + + /* * Select on the list of fds. |