Author: hpoussin Date: Wed Jul 30 02:27:33 2008 New Revision: 34944
URL: http://svn.reactos.org/svn/reactos?rev=34944&view=rev Log: Fix GetEnvironmentStrings/GetEnvironmentStringsA mess
Modified: trunk/reactos/include/psdk/winbase.h
Modified: trunk/reactos/include/psdk/winbase.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/psdk/winbase.h?rev=... ============================================================================== --- trunk/reactos/include/psdk/winbase.h [iso-8859-1] (original) +++ trunk/reactos/include/psdk/winbase.h [iso-8859-1] Wed Jul 30 02:27:33 2008 @@ -1465,7 +1465,7 @@ #endif UINT WINAPI GetDriveTypeA(LPCSTR); UINT WINAPI GetDriveTypeW(LPCWSTR); -LPSTR WINAPI GetEnvironmentStrings(void); +LPSTR WINAPI GetEnvironmentStringsA(void); LPWSTR WINAPI GetEnvironmentStringsW(void); DWORD WINAPI GetEnvironmentVariableA(LPCSTR,LPSTR,DWORD); DWORD WINAPI GetEnvironmentVariableW(LPCWSTR,LPWSTR,DWORD); @@ -2401,7 +2401,7 @@ #define GetDllDirectory GetDllDirectoryA #endif #define GetDriveType GetDriveTypeA -#define GetEnvironmentStringsA GetEnvironmentStrings +#define GetEnvironmentStrings GetEnvironmentStringsA #define GetEnvironmentVariable GetEnvironmentVariableA #define GetFileAttributes GetFileAttributesA #define GetFileAttributesEx GetFileAttributesExA