mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 05:45:50 +00:00
Fix GetEnvironmentStrings/GetEnvironmentStringsA mess
svn path=/trunk/; revision=34944
This commit is contained in:
parent
4b9274519b
commit
aa8cad03d0
1 changed files with 2 additions and 2 deletions
|
@ -1465,7 +1465,7 @@ DWORD WINAPI GetDllDirectoryW(DWORD,LPWSTR);
|
||||||
#endif
|
#endif
|
||||||
UINT WINAPI GetDriveTypeA(LPCSTR);
|
UINT WINAPI GetDriveTypeA(LPCSTR);
|
||||||
UINT WINAPI GetDriveTypeW(LPCWSTR);
|
UINT WINAPI GetDriveTypeW(LPCWSTR);
|
||||||
LPSTR WINAPI GetEnvironmentStrings(void);
|
LPSTR WINAPI GetEnvironmentStringsA(void);
|
||||||
LPWSTR WINAPI GetEnvironmentStringsW(void);
|
LPWSTR WINAPI GetEnvironmentStringsW(void);
|
||||||
DWORD WINAPI GetEnvironmentVariableA(LPCSTR,LPSTR,DWORD);
|
DWORD WINAPI GetEnvironmentVariableA(LPCSTR,LPSTR,DWORD);
|
||||||
DWORD WINAPI GetEnvironmentVariableW(LPCWSTR,LPWSTR,DWORD);
|
DWORD WINAPI GetEnvironmentVariableW(LPCWSTR,LPWSTR,DWORD);
|
||||||
|
@ -2401,7 +2401,7 @@ typedef ENUMRESTYPEPROCA ENUMRESTYPEPROC;
|
||||||
#define GetDllDirectory GetDllDirectoryA
|
#define GetDllDirectory GetDllDirectoryA
|
||||||
#endif
|
#endif
|
||||||
#define GetDriveType GetDriveTypeA
|
#define GetDriveType GetDriveTypeA
|
||||||
#define GetEnvironmentStringsA GetEnvironmentStrings
|
#define GetEnvironmentStrings GetEnvironmentStringsA
|
||||||
#define GetEnvironmentVariable GetEnvironmentVariableA
|
#define GetEnvironmentVariable GetEnvironmentVariableA
|
||||||
#define GetFileAttributes GetFileAttributesA
|
#define GetFileAttributes GetFileAttributesA
|
||||||
#define GetFileAttributesEx GetFileAttributesExA
|
#define GetFileAttributesEx GetFileAttributesExA
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue