Remove nonstandard type LPLPVOID.

This commit is contained in:
James Hawkins 2005-04-11 12:52:00 +00:00 committed by Alexandre Julliard
parent 11ffcbaafd
commit fd6d3567de
2 changed files with 1 additions and 3 deletions

View file

@ -802,7 +802,7 @@ const char * get_file_version(const char * file_name)
if (GetFileVersionInfoA("dsound.dll", handle, size, data)) {
VS_FIXEDFILEINFO *pFixedVersionInfo;
UINT len;
if (VerQueryValueA(data, "\\", (LPLPVOID)&pFixedVersionInfo, &len)) {
if (VerQueryValueA(data, "\\", (LPVOID *)&pFixedVersionInfo, &len)) {
sprintf(version, "%ld.%ld.%ld.%ld",
pFixedVersionInfo->dwFileVersionMS >> 16,
pFixedVersionInfo->dwFileVersionMS & 0xffff,

View file

@ -389,8 +389,6 @@ typedef const DSCBCAPS *LPCDSCBCAPS;
typedef const GUID *LPCGUID;
#endif
typedef LPVOID* LPLPVOID;
typedef BOOL (CALLBACK *LPDSENUMCALLBACKW)(LPGUID,LPCWSTR,LPCWSTR,LPVOID);
typedef BOOL (CALLBACK *LPDSENUMCALLBACKA)(LPGUID,LPCSTR,LPCSTR,LPVOID);