mirror of
https://github.com/reactos/reactos.git
synced 2025-06-01 23:48:12 +00:00
[PSDK]
* Add some missing definitions. svn path=/trunk/; revision=56566
This commit is contained in:
parent
ec734c5ab0
commit
6cdf643af6
2 changed files with 19 additions and 0 deletions
|
@ -138,6 +138,24 @@ extern "C" {
|
|||
#define LOCALE_IREADINGLAYOUT 0x0070
|
||||
#define LOCALE_INEUTRAL 0x0071
|
||||
|
||||
#if defined(__GNUC__)
|
||||
# define LOCALE_NAME_INVARIANT (const WCHAR []){ 0 }
|
||||
#elif defined(_MSC_VER)
|
||||
# define LOCALE_NAME_INVARIANT L""
|
||||
#else
|
||||
static const WCHAR LOCALE_NAME_INVARIANT[] = { 0 };
|
||||
#endif
|
||||
|
||||
#if defined(__GNUC__)
|
||||
# define LOCALE_NAME_SYSTEM_DEFAULT (const WCHAR []){'!','s','y','s','-','d','e','f','a','u','l','t','-','l','o','c','a','l','e',0}
|
||||
#elif defined(_MSC_VER)
|
||||
# define LOCALE_NAME_SYSTEM_DEFAULT L"!sys-default-locale"
|
||||
#else
|
||||
static const WCHAR LOCALE_NAME_SYSTEM_DEFAULT[] = {'!','s','y','s','-','d','e','f','a','u','l','t','-','l','o','c','a','l','e',0};
|
||||
#endif
|
||||
|
||||
#define LOCALE_NAME_USER_DEFAULT NULL
|
||||
|
||||
#define LOCALE_IDEFAULTUNIXCODEPAGE 0x1030 /* Wine extension */
|
||||
|
||||
#define NORM_IGNORECASE 1
|
||||
|
|
|
@ -1235,6 +1235,7 @@ typedef enum {
|
|||
#define LANG_USER_DEFAULT MAKELANGID(LANG_NEUTRAL,SUBLANG_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_NAME_MAX_LENGTH 85
|
||||
#define ACL_REVISION 2
|
||||
#define ACL_REVISION_DS 4
|
||||
#define ACL_REVISION1 1
|
||||
|
|
Loading…
Reference in a new issue