2010-08-25 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>
* include/winbase.h (GetEnvironmentStrings, GetEnvironmentStringsA): Per MSDN, change return type to LPCH. (GetEnvironmentStringsW): Per MSDN, change return type to LPWCH.
This commit is contained in:
parent
04c82a9ba0
commit
0fc2536a69
|
@ -1,3 +1,9 @@
|
|||
2010-08-25 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>
|
||||
|
||||
* include/winbase.h (GetEnvironmentStrings, GetEnvironmentStringsA): Per
|
||||
MSDN, change return type to LPCH.
|
||||
(GetEnvironmentStringsW): Per MSDN, change return type to LPWCH.
|
||||
|
||||
2010-08-24 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>
|
||||
|
||||
* include/prsht.h (SNDMDG, POSTMSG): Fix typo.
|
||||
|
|
|
@ -1571,9 +1571,9 @@ WINBASEAPI DWORD WINAPI GetDllDirectoryW(DWORD,LPWSTR);
|
|||
#endif
|
||||
WINBASEAPI UINT WINAPI GetDriveTypeA(LPCSTR);
|
||||
WINBASEAPI UINT WINAPI GetDriveTypeW(LPCWSTR);
|
||||
WINBASEAPI LPSTR WINAPI GetEnvironmentStrings(void);
|
||||
WINBASEAPI LPSTR WINAPI GetEnvironmentStringsA(void);
|
||||
WINBASEAPI LPWSTR WINAPI GetEnvironmentStringsW(void);
|
||||
WINBASEAPI LPCH WINAPI GetEnvironmentStrings(void);
|
||||
WINBASEAPI LPCH WINAPI GetEnvironmentStringsA(void);
|
||||
WINBASEAPI LPWCH WINAPI GetEnvironmentStringsW(void);
|
||||
WINBASEAPI DWORD WINAPI GetEnvironmentVariableA(LPCSTR,LPSTR,DWORD);
|
||||
WINBASEAPI DWORD WINAPI GetEnvironmentVariableW(LPCWSTR,LPWSTR,DWORD);
|
||||
WINBASEAPI BOOL WINAPI GetExitCodeProcess(HANDLE,PDWORD);
|
||||
|
|
Loading…
Reference in New Issue