mirror of
https://github.com/reactos/reactos.git
synced 2025-07-02 11:11:22 +00:00
[PSDK] Add missing hMonitor member in union with hIcon in SHELLEXECUTEINFOA/W
As documented in the official MS PSDK and MSDN.
This commit is contained in:
parent
37e2c59096
commit
b1cf981c52
1 changed files with 14 additions and 2 deletions
|
@ -319,11 +319,17 @@ typedef struct _SHELLEXECUTEINFOA {
|
|||
LPCSTR lpDirectory;
|
||||
int nShow;
|
||||
HINSTANCE hInstApp;
|
||||
/* Optional fields */
|
||||
PVOID lpIDList;
|
||||
LPCSTR lpClass;
|
||||
HKEY hkeyClass;
|
||||
DWORD dwHotKey;
|
||||
HANDLE hIcon;
|
||||
_ANONYMOUS_UNION union {
|
||||
HANDLE hIcon;
|
||||
#if (NTDDI_VERSION >= NTDDI_WIN2K)
|
||||
HANDLE hMonitor;
|
||||
#endif
|
||||
} DUMMYUNIONNAME;
|
||||
HANDLE hProcess;
|
||||
} SHELLEXECUTEINFOA,*LPSHELLEXECUTEINFOA;
|
||||
typedef struct _SHELLEXECUTEINFOW {
|
||||
|
@ -336,11 +342,17 @@ typedef struct _SHELLEXECUTEINFOW {
|
|||
LPCWSTR lpDirectory;
|
||||
int nShow;
|
||||
HINSTANCE hInstApp;
|
||||
/* Optional fields */
|
||||
PVOID lpIDList;
|
||||
LPCWSTR lpClass;
|
||||
HKEY hkeyClass;
|
||||
DWORD dwHotKey;
|
||||
HANDLE hIcon;
|
||||
_ANONYMOUS_UNION union {
|
||||
HANDLE hIcon;
|
||||
#if (NTDDI_VERSION >= NTDDI_WIN2K)
|
||||
HANDLE hMonitor;
|
||||
#endif
|
||||
} DUMMYUNIONNAME;
|
||||
HANDLE hProcess;
|
||||
} SHELLEXECUTEINFOW,*LPSHELLEXECUTEINFOW;
|
||||
typedef struct _SHFILEOPSTRUCTA {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue