mirror of
https://github.com/reactos/reactos.git
synced 2025-04-22 05:00:27 +00:00
[NDK]
- Add RTL_PERTHREAD_CURDIR structure definition. - Fix RTL_DRIVE_LETTER_CURDIR type vs. structure definition typo (adding more underscores is a truly universal fix!). svn path=/trunk/; revision=51235
This commit is contained in:
parent
d7899fc474
commit
901b5f0d91
1 changed files with 8 additions and 1 deletions
|
@ -1012,7 +1012,7 @@ typedef struct _CURDIR
|
|||
HANDLE Handle;
|
||||
} CURDIR, *PCURDIR;
|
||||
|
||||
typedef struct RTL_DRIVE_LETTER_CURDIR
|
||||
typedef struct _RTL_DRIVE_LETTER_CURDIR
|
||||
{
|
||||
USHORT Flags;
|
||||
USHORT Length;
|
||||
|
@ -1020,6 +1020,13 @@ typedef struct RTL_DRIVE_LETTER_CURDIR
|
|||
UNICODE_STRING DosPath;
|
||||
} RTL_DRIVE_LETTER_CURDIR, *PRTL_DRIVE_LETTER_CURDIR;
|
||||
|
||||
typedef struct _RTL_PERTHREAD_CURDIR
|
||||
{
|
||||
PRTL_DRIVE_LETTER_CURDIR CurrentDirectories;
|
||||
PUNICODE_STRING ImageName;
|
||||
PVOID Environment;
|
||||
} RTL_PERTHREAD_CURDIR, *PRTL_PERTHREAD_CURDIR;
|
||||
|
||||
//
|
||||
// Private State structure for RtlAcquirePrivilege/RtlReleasePrivilege
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue