mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
[PSDK]
Make DECLARE_CONST_UNICODE_STRING() work with something else than MSVC svn path=/trunk/; revision=72986
This commit is contained in:
parent
0508cc702d
commit
6fa7ff1eba
1 changed files with 10 additions and 0 deletions
|
@ -223,6 +223,7 @@ char _RTL_CONSTANT_STRING_type_check(const void *s);
|
|||
sizeof(s) / sizeof(_RTL_CONSTANT_STRING_type_check(s)), \
|
||||
_RTL_CONSTANT_STRING_remove_const_macro(s) }
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#define DECLARE_UNICODE_STRING_SIZE(_var, _size) \
|
||||
WCHAR _var ## _buffer[_size]; \
|
||||
__pragma(warning(push)) __pragma(warning(disable:4221)) __pragma(warning(disable:4204)) \
|
||||
|
@ -234,6 +235,15 @@ char _RTL_CONSTANT_STRING_type_check(const void *s);
|
|||
__pragma(warning(push)) __pragma(warning(disable:4221)) __pragma(warning(disable:4204)) \
|
||||
const UNICODE_STRING _var = { sizeof(_string) - sizeof(WCHAR), sizeof(_string), (PWCH)_var##_buffer } \
|
||||
__pragma(warning(pop))
|
||||
#else
|
||||
#define DECLARE_UNICODE_STRING_SIZE(_var, _size) \
|
||||
WCHAR _var ## _buffer[_size]; \
|
||||
UNICODE_STRING _var = { 0, (_size) * sizeof(WCHAR) , _var ## _buffer }
|
||||
|
||||
#define DECLARE_CONST_UNICODE_STRING(_var, _string) \
|
||||
const WCHAR _var##_buffer[] = _string; \
|
||||
const UNICODE_STRING _var = { sizeof(_string) - sizeof(WCHAR), sizeof(_string), (PWCH)_var##_buffer }
|
||||
#endif
|
||||
|
||||
#define DECLARE_GLOBAL_CONST_UNICODE_STRING(_var, _str) \
|
||||
extern const __declspec(selectany) UNICODE_STRING _var = RTL_CONSTANT_STRING(_str)
|
||||
|
|
Loading…
Reference in a new issue