mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 05:00:30 +00:00
ad7538bfc5
Added async IO support to FILE and CONSOLE objects.
7 lines
230 B
C
7 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
|