Module: wine Branch: master Commit: aadd2ac33f23c98c0e0a515dc4debd06825e238a URL: http://source.winehq.org/git/wine.git/?a=commit;h=aadd2ac33f23c98c0e0a515dc4... Author: Damjan Jovanovic <damjan.jov(a)gmail.com> Date: Mon Apr 12 20:33:01 2010 +0200 wdm.h: Define KeResetEvent and KeSetEvent. --- include/ddk/wdm.h | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/include/ddk/wdm.h b/include/ddk/wdm.h index b086ef7..e57be4b 100644 --- a/include/ddk/wdm.h +++ b/include/ddk/wdm.h @@ -1082,6 +1082,8 @@ void WINAPI KeQuerySystemTime(LARGE_INTEGER*); void WINAPI KeQueryTickCount(LARGE_INTEGER*); ULONG WINAPI KeQueryTimeIncrement(void); LONG WINAPI KeReleaseSemaphore(PRKSEMAPHORE,KPRIORITY,LONG,BOOLEAN); +LONG WINAPI KeResetEvent(PRKEVENT); +LONG WINAPI KeSetEvent(PRKEVENT,KPRIORITY,BOOLEAN); KPRIORITY WINAPI KeSetPriorityThread(PKTHREAD,KPRIORITY); PVOID WINAPI MmAllocateContiguousMemory(SIZE_T,PHYSICAL_ADDRESS);