Module: wine Branch: master Commit: d60b53761b3dcaa1f31ddd3e0e87d229e60b9949 URL: http://source.winehq.org/git/wine.git/?a=commit;h=d60b53761b3dcaa1f31ddd3e0e...
Author: Jacek Caban jacek@codeweavers.com Date: Sun Jul 31 14:51:21 2011 +0200
winnt.h: Added LOCALE_CUSTOM_* declarations.
---
include/winnt.h | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/include/winnt.h b/include/winnt.h index 73a2ae8..0be6040 100644 --- a/include/winnt.h +++ b/include/winnt.h @@ -1970,6 +1970,10 @@ NTSYSAPI void WINAPI RtlCaptureContext(CONTEXT*); #define LOCALE_USER_DEFAULT (MAKELCID(LANG_USER_DEFAULT, SORT_DEFAULT)) #define LOCALE_NEUTRAL (MAKELCID(MAKELANGID(LANG_NEUTRAL,SUBLANG_NEUTRAL),SORT_DEFAULT)) #define LOCALE_INVARIANT (MAKELCID(MAKELANGID(LANG_INVARIANT,SUBLANG_NEUTRAL),SORT_DEFAULT)) +#define LOCALE_CUSTOM_DEFAULT (MAKELCID(MAKELANGID(LANG_NEUTRAL,SUBLANG_CUSTOM_DEFAULT),SORT_DEFAULT)) +#define LOCALE_CUSTOM_UNSPECIFIED (MAKELCID(MAKELANGID(LANG_NEUTRAL,SUBLANG_CUSTOM_UNSPECIFIED),SORT_DEFAULT)) +#define LOCALE_CUSTOM_UI_DEFAULT (MAKELCID(MAKELANGID(LANG_NEUTRAL,SUBLANG_UI_CUSTOM_DEFAULT),SORT_DEFAULT)) +
#define UNREFERENCED_PARAMETER(u) (void)(u) #define DBG_UNREFERENCED_PARAMETER(u) (void)(u)