diff options
Diffstat (limited to 'gpgme/w32-io.c')
-rw-r--r-- | gpgme/w32-io.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/gpgme/w32-io.c b/gpgme/w32-io.c index dfdf45e5..a4a42569 100644 --- a/gpgme/w32-io.c +++ b/gpgme/w32-io.c @@ -1403,9 +1403,9 @@ _gpgme_io_dup (int fd) } -/* The following interface is only useful for GPGME Glib. */ +/* The following interface is only useful for GPGME Glib and Qt. */ -/* Look up the giochannel for file descriptor FD. */ +/* Compatibility interface, obsolete. */ void * gpgme_get_giochannel (int fd) { @@ -1413,3 +1413,9 @@ gpgme_get_giochannel (int fd) } +/* Look up the giochannel or qiodevice for file descriptor FD. */ +void * +gpgme_get_fdptr (int fd) +{ + return NULL; +} |