Changeset 415
- Timestamp:
- Feb 24, 2008, 9:38:29 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Include/api_system.sbp
r390 r415 242 242 End Function 243 243 Function InterlockedExchange(ByRef Target As Long, Value As Long) As Long 244 InterlockedExchange=Target 244 245 Target = Value 245 Return Target246 246 End Function 247 247 Function InterlockedCompareExchange(ByRef Destination As Long, Exchange As Long, Comperand As Long) As Long … … 256 256 End Function 257 257 Function InterlockedExchangePointer(ByRef Target As VoidPtr, Value As VoidPtr) As VoidPtr 258 InterlockedExchangePointer = Target 258 259 Target = Value 259 Return Target260 260 End Function 261 261 Function InterlockedCompareExchangePointer(ByRef Destination As VoidPtr, Exchange As VoidPtr, Comperand As VoidPtr) As VoidPtr
Note:
See TracChangeset
for help on using the changeset viewer.