Ignore:
Timestamp:
Aug 20, 2000, 5:17:00 PM (25 years ago)
Author:
phaller
Message:

Fix of broken build due to WINE sync

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/NTDLL/sync.cpp

    r557 r4059  
    1 /* $Id: sync.cpp,v 1.3 1999-08-18 21:45:14 phaller Exp $ */
     1/* $Id: sync.cpp,v 1.4 2000-08-20 15:17:00 phaller Exp $ */
    22
    33/*
     
    158158}
    159159
     160/**************************************************************************
     161 *                 NtClearEvent                   [NTDLL.?]
     162 */
     163NTSTATUS WIN32API NtClearEvent(HANDLE hEvent)
     164{
     165  dprintf(("NTDLL: NtClearEvent(%08xh) not implemented.\n",
     166           hEvent));
     167
     168  return 0;
     169}
     170
     171/**************************************************************************
     172 *                 NtPulseEvent                   [NTDLL.?]
     173 */
     174NTSTATUS WIN32API NtPulseEvent(HANDLE hEvent,
     175                               PULONG PulseCount)
     176{
     177  dprintf(("NTDLL: NtPulseEvent(%08xh,%08xh) not implemented.\n",
     178           hEvent,
     179          PulseCount));
     180
     181  return 0;
     182}
     183
     184/**************************************************************************
     185 *                 NtQueryEvent                   [NTDLL.?]
     186 */
     187NTSTATUS WIN32API NtQueryEvent(HANDLE hEvent,
     188                               UINT   EventInformationClass,
     189                               PVOID  EventInformation,
     190                               ULONG  EventInformationLength,
     191                               PULONG ReturnLength)
     192{
     193  dprintf(("NTDLL: NtQueryEvent() not implemented.\n"));
     194
     195  return 0;
     196}
Note: See TracChangeset for help on using the changeset viewer.