From fd6d3567debf0a0c6fbf2843aff742a29bad21e7 Mon Sep 17 00:00:00 2001 From: James Hawkins Date: Mon, 11 Apr 2005 12:52:00 +0000 Subject: [PATCH] Remove nonstandard type LPLPVOID. --- dlls/dsound/tests/dsound8.c | 2 +- include/dsound.h | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/dlls/dsound/tests/dsound8.c b/dlls/dsound/tests/dsound8.c index 042f33f5133..b0e34e7f0ff 100644 --- a/dlls/dsound/tests/dsound8.c +++ b/dlls/dsound/tests/dsound8.c @@ -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, diff --git a/include/dsound.h b/include/dsound.h index aff2c07909a..9087f77edd9 100644 --- a/include/dsound.h +++ b/include/dsound.h @@ -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);