#ifndef WIN32_LEAN_AND_MEAN | |
#define WIN32_LEAN_AND_MEAN | |
#endif | |
#include <windows.h> | |
BOOLEAN InterlockedBitTestAndComplement(LONG *Base,LONG Bit) | |
{ | |
int old = 0; | |
__asm__ __volatile__("lock ; btcl %2,%1\n\tsbbl %0,%0 " | |
:"=r" (old),"=m" ((*(volatile long *) Base)) | |
:"Ir" (Bit)); | |
return (BOOLEAN) (old != 0); | |
} | |