diff options
author | NIIBE Yutaka <[email protected]> | 2024-06-24 05:44:07 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2024-06-25 06:34:25 +0000 |
commit | 9aa6faaf10cf6739b0ddf5b42b6181a5c2a0000c (patch) | |
tree | a53b2468e1f46e4ef1d04af4dc4bf1b403f54193 /scd/scdaemon.h | |
parent | gpg: New option --show-only-session-key (diff) | |
download | gnupg-9aa6faaf10cf6739b0ddf5b42b6181a5c2a0000c.tar.gz gnupg-9aa6faaf10cf6739b0ddf5b42b6181a5c2a0000c.zip |
scd: Factor out scd_init_event function.
* scd/scdaemon.c (scd_init_event): New.
--
Signed-off-by: NIIBE Yutaka <[email protected]>
Diffstat (limited to '')
-rw-r--r-- | scd/scdaemon.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scd/scdaemon.h b/scd/scdaemon.h index 5076588f0..d6114c9e7 100644 --- a/scd/scdaemon.h +++ b/scd/scdaemon.h @@ -138,6 +138,10 @@ struct server_control_s /*-- scdaemon.c --*/ void scd_exit (int rc); const char *scd_get_socket_name (void); +#ifdef HAVE_W32_SYSTEM +void scd_init_event (HANDLE *e_p, HANDLE events[2]); +#endif + /*-- command.c --*/ gpg_error_t initialize_module_command (void); |