* winbase.h: Add missing closing parentheses to InterlockedExchangePointer
declaration.
This commit is contained in:
parent
2d54484a72
commit
fb7369b515
@ -1,3 +1,8 @@
|
|||||||
|
Tue Sep 4 14:15:59 2001 Christopher Faylor <cgf@cygnus.com>
|
||||||
|
|
||||||
|
* winbase.h: Add missing closing parentheses to
|
||||||
|
InterlockedExchangePointer declaration.
|
||||||
|
|
||||||
2001-09-01 Danny Smith <dannysmith@users.sourceforge.net>
|
2001-09-01 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
* include/shlobj.h (CFSTR_* ): Add new defines.
|
* include/shlobj.h (CFSTR_* ): Add new defines.
|
||||||
|
@ -1319,7 +1319,7 @@ LONG WINAPI InterlockedDecrement(LPLONG);
|
|||||||
LONG WINAPI InterlockedExchange(LPLONG,LONG);
|
LONG WINAPI InterlockedExchange(LPLONG,LONG);
|
||||||
/* PVOID WINAPI InterlockedExchangePointer(PVOID*,PVOID); */
|
/* PVOID WINAPI InterlockedExchangePointer(PVOID*,PVOID); */
|
||||||
#define InterlockedExchangePointer(t,v) \
|
#define InterlockedExchangePointer(t,v) \
|
||||||
(PVOID)InterlockedExchange((LPLONG)(t),(LONG)(v)
|
(PVOID)InterlockedExchange((LPLONG)(t),(LONG)(v))
|
||||||
LONG WINAPI InterlockedExchangeAdd(PLONG,LONG);
|
LONG WINAPI InterlockedExchangeAdd(PLONG,LONG);
|
||||||
LONG WINAPI InterlockedIncrement(LPLONG);
|
LONG WINAPI InterlockedIncrement(LPLONG);
|
||||||
BOOL WINAPI IsBadCodePtr(FARPROC);
|
BOOL WINAPI IsBadCodePtr(FARPROC);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user