mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 20:18:28 +00:00
ad7538bfc5
Added async IO support to FILE and CONSOLE objects.
6 lines
230 B
C
6 lines
230 B
C
#ifndef __WINE_ASYNC_H
|
|
#define __WINE_ASYNC_H
|
|
|
|
extern void ASYNC_RegisterFD(int unixfd,void (*handler)(int fd,void *private),void *private);
|
|
extern void ASYNC_UnregisterFD(int unixfd,void (*handler)(int fd,void *private));
|
|
#endif
|