mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
get rid of buggy unnecessary macro
svn path=/trunk/; revision=6642
This commit is contained in:
parent
8d30d471de
commit
6aed8b6dbd
1 changed files with 7 additions and 7 deletions
|
@ -604,17 +604,17 @@ typedef struct _MEMORY_WORKING_SET_LIST { // Information Class 1
|
|||
} MEMORY_WORKING_SET_LIST, *PMEMORY_WORKING_SET_LIST;
|
||||
|
||||
// Information Class 2
|
||||
#define _MEMORY_SECTION_NAME_STATIC(__bufsize__) \
|
||||
/*#define _MEMORY_SECTION_NAME_STATIC(__bufsize__) \
|
||||
{ \
|
||||
UNICODE_STRING SectionFileName; \
|
||||
WCHAR NameBuffer[(__bufsize__)]; \
|
||||
}
|
||||
}*/
|
||||
|
||||
#define MEMORY_SECTION_NAME_STATIC(__bufsize__) \
|
||||
struct _MEMORY_SECTION_NAME_STATIC((__bufsize__)
|
||||
|
||||
typedef struct _MEMORY_SECTION_NAME_STATIC(ANYSIZE_ARRAY)
|
||||
MEMORY_SECTION_NAME, *PMEMORY_SECTION_NAME;
|
||||
typedef struct
|
||||
{
|
||||
UNICODE_STRING SectionFileName;
|
||||
WCHAR NameBuffer[ANYSIZE_ARRAY];
|
||||
} MEMORY_SECTION_NAME, *PMEMORY_SECTION_NAME;
|
||||
|
||||
// Information class 0
|
||||
typedef struct _PROCESS_BASIC_INFORMATION
|
||||
|
|
Loading…
Reference in a new issue