repo.or.cz
/
wine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Implementation of the new monitor abstraction.
[wine.git]
/
include
/
async.h
blob
52c0bbad7331de63178a058bc11788eaa2f4b5c7
1
#ifndef __WINE_ASYNC_H
2
#define __WINE_ASYNC_H
3
4
extern
void
ASYNC_RegisterFD
(
int
unixfd
,
void
(*
handler
)(
int
fd
,
void
*
private
),
void
*
private
);
5
extern
void
ASYNC_UnregisterFD
(
int
unixfd
,
void
(*
handler
)(
int
fd
,
void
*
private
));
6
#endif