mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 10:22:59 +00:00
[SHELL32] shellpath.c: it is _WIN32_WINNT, not WIN32_WINNT. We even need to use __REACTOS__ instead here. CORE-12580
This commit is contained in:
parent
b8309397b5
commit
57aa1f1fc6
1 changed files with 6 additions and 3 deletions
|
@ -645,7 +645,8 @@ typedef enum _CSIDL_Type {
|
||||||
CSIDL_Type_SystemX86Path,
|
CSIDL_Type_SystemX86Path,
|
||||||
} CSIDL_Type;
|
} CSIDL_Type;
|
||||||
|
|
||||||
#if WIN32_WINNT >= 0x0600
|
/* Cannot use #if _WIN32_WINNT >= 0x0600 because _WIN32_WINNT == 0x0600 here. */
|
||||||
|
#ifndef __REACTOS__
|
||||||
#define CSIDL_CONTACTS 0x0043
|
#define CSIDL_CONTACTS 0x0043
|
||||||
#define CSIDL_DOWNLOADS 0x0047
|
#define CSIDL_DOWNLOADS 0x0047
|
||||||
#define CSIDL_LINKS 0x004d
|
#define CSIDL_LINKS 0x004d
|
||||||
|
@ -1042,7 +1043,8 @@ static const CSIDL_DATA CSIDL_Data[] =
|
||||||
NULL,
|
NULL,
|
||||||
NULL
|
NULL
|
||||||
},
|
},
|
||||||
#if WIN32_WINNT >= 0x0600
|
/* Cannot use #if _WIN32_WINNT >= 0x0600 because _WIN32_WINNT == 0x0600 here. */
|
||||||
|
#ifndef __REACTOS__
|
||||||
{ /* 0x3f */
|
{ /* 0x3f */
|
||||||
&FOLDERID_AddNewPrograms,
|
&FOLDERID_AddNewPrograms,
|
||||||
CSIDL_Type_Disallowed,
|
CSIDL_Type_Disallowed,
|
||||||
|
@ -2271,7 +2273,8 @@ static HRESULT _SHRegisterUserShellFolders(BOOL bDefault)
|
||||||
CSIDL_MYPICTURES,
|
CSIDL_MYPICTURES,
|
||||||
CSIDL_FONTS,
|
CSIDL_FONTS,
|
||||||
CSIDL_ADMINTOOLS,
|
CSIDL_ADMINTOOLS,
|
||||||
#if WIN32_WINNT >= 0x0600
|
/* Cannot use #if _WIN32_WINNT >= 0x0600 because _WIN32_WINNT == 0x0600 here. */
|
||||||
|
#ifndef __REACTOS__
|
||||||
CSIDL_CONTACTS,
|
CSIDL_CONTACTS,
|
||||||
CSIDL_DOWNLOADS,
|
CSIDL_DOWNLOADS,
|
||||||
CSIDL_LINKS,
|
CSIDL_LINKS,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue