HomeSort by relevance Sort by last modified time
    Searched refs:BoolToBOOL (Results 1 - 3 of 3) sorted by null

  /external/lzma/CPP/Windows/
Defs.h 10 inline bool BOOLToBool(BOOL v) { return (v != FALSE); }
11 inline BOOL BoolToBOOL(bool v) { return (v ? TRUE: FALSE); }
Synchronization.h 30 _object = ::CreateEvent(sa, BoolToBOOL(manualReset), BoolToBOOL(initiallyOwn), name);
37 _object = ::OpenEvent(desiredAccess, BoolToBOOL(inheritHandle), name);
45 // bool Pulse() { return BOOLToBool(::PulseEvent(_handle)); }
98 _handle = ::CreateMutex(sa, BoolToBOOL(initiallyOwn), name);
106 _handle = ::OpenMutex(desiredAccess, BoolToBOOL(inheritHandle), name);
FileFind.cpp 163 bool result = BOOLToBool(::FindNextFile(_handle, &fd));
363 _handle = ::FindFirstChangeNotification(pathName, BoolToBOOL(watchSubtree), notifyFilter);
369 _handle = ::FindFirstChangeNotificationW(longPath, BoolToBOOL(watchSubtree), notifyFilter);
380 _handle = ::FindFirstChangeNotificationW(pathName, BoolToBOOL(watchSubtree), notifyFilter);
386 _handle = ::FindFirstChangeNotificationW(longPath, BoolToBOOL(watchSubtree), notifyFilter);

Completed in 571 milliseconds