Changeset 243 for trunk/include/helpers/sem.h
- Timestamp:
- Jan 29, 2003, 7:41:39 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/helpers/sem.h
r196 r243 63 63 APIRET semRelease(PFASTMTX pmtx); 64 64 65 LONG APIENTRY DosInterlockedCompareExchange(PLONG dest, LONG xchg, LONG compare);66 LONG APIENTRY DosInterlockedDecrement(PLONG);67 LONG APIENTRY DosInterlockedExchange(PLONG, LONG);68 LONG APIENTRY DosInterlockedExchangeAdd(PLONG dest, LONG incr);69 LONG APIENTRY DosInterlockedIncrement(PLONG);65 LONG APIENTRY lockCompareExchange(PLONG dest, LONG xchg, LONG compare); 66 LONG APIENTRY lockDecrement(PLONG); 67 LONG APIENTRY lockExchange(PLONG, LONG); 68 LONG APIENTRY lockExchangeAdd(PLONG dest, LONG incr); 69 LONG APIENTRY lockIncrement(PLONG); 70 70 71 71 #endif
Note:
See TracChangeset
for help on using the changeset viewer.