Mail Archives: cygwin-developers/2001/09/04/14:22:23
Tue Sep 4 14:15:59 2001 Christopher Faylor <cgf AT cygnus DOT com>
* winbase.h: Add missing closing parentheses to
InterlockedExchangePointer declaration.
Index: include/winbase.h
===================================================================
RCS file: /cvs/uberbaum/winsup/w32api/include/winbase.h,v
retrieving revision 1.14
diff -p -r1.14 winbase.h
*** winbase.h 2001/08/21 13:58:51 1.14
--- winbase.h 2001/09/04 18:15:48
*************** LONG WINAPI InterlockedDecrement(LPLONG)
*** 1319,1325 ****
LONG WINAPI InterlockedExchange(LPLONG,LONG);
/* PVOID WINAPI InterlockedExchangePointer(PVOID*,PVOID); */
#define InterlockedExchangePointer(t,v) \
! (PVOID)InterlockedExchange((LPLONG)(t),(LONG)(v)
LONG WINAPI InterlockedExchangeAdd(PLONG,LONG);
LONG WINAPI InterlockedIncrement(LPLONG);
BOOL WINAPI IsBadCodePtr(FARPROC);
--- 1319,1325 ----
LONG WINAPI InterlockedExchange(LPLONG,LONG);
/* PVOID WINAPI InterlockedExchangePointer(PVOID*,PVOID); */
#define InterlockedExchangePointer(t,v) \
! (PVOID)InterlockedExchange((LPLONG)(t),(LONG)(v))
LONG WINAPI InterlockedExchangeAdd(PLONG,LONG);
LONG WINAPI InterlockedIncrement(LPLONG);
BOOL WINAPI IsBadCodePtr(FARPROC);
- Raw text -