* include/winnt.h (VER_SET_CONDITION): Define.
This commit is contained in:
Danny Smith
2005-07-18 08:52:29 +00:00
parent 9d219da08a
commit 90e7ba4fd5
2 changed files with 7 additions and 0 deletions

View File

@@ -3349,6 +3349,9 @@ typedef OSVERSIONINFOEXA OSVERSIONINFOEX,*POSVERSIONINFOEX,*LPOSVERSIONINFOEX;
#if (_WIN32_WINNT >= 0x0500)
ULONGLONG WINAPI VerSetConditionMask(ULONGLONG,DWORD,BYTE);
#define VER_SET_CONDITION(ConditionMask, TypeBitMask, ComparisonType) \
((ConditionMask) = VerSetConditionMask((ConditionMask), \
(TypeBitMask), (ComparisonType)))
#endif
PVOID GetCurrentFiber(void);