From 375f8ba23761d75230805e86bc057ef7755cb57c Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Fri, 6 Jun 2008 11:54:33 +0200 Subject: [PATCH] include: Add winelib names for some dsound A/W function / types. --- include/dsound.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/dsound.h b/include/dsound.h index fc1eeff8e5e..b14229e2546 100644 --- a/include/dsound.h +++ b/include/dsound.h @@ -396,14 +396,16 @@ typedef const GUID *LPCGUID; typedef BOOL (CALLBACK *LPDSENUMCALLBACKW)(LPGUID,LPCWSTR,LPCWSTR,LPVOID); typedef BOOL (CALLBACK *LPDSENUMCALLBACKA)(LPGUID,LPCSTR,LPCSTR,LPVOID); +DECL_WINELIB_TYPE_AW(LPDSENUMCALLBACK); extern HRESULT WINAPI DirectSoundCreate(LPCGUID lpGUID,LPDIRECTSOUND *ppDS,LPUNKNOWN pUnkOuter); extern HRESULT WINAPI DirectSoundEnumerateA(LPDSENUMCALLBACKA, LPVOID); extern HRESULT WINAPI DirectSoundEnumerateW(LPDSENUMCALLBACKW, LPVOID); - +#define DirectSoundEnumerate WINELIB_NAME_AW(DirectSoundEnumerate) extern HRESULT WINAPI DirectSoundCaptureCreate(LPCGUID lpGUID, LPDIRECTSOUNDCAPTURE *ppDSC, LPUNKNOWN pUnkOuter); extern HRESULT WINAPI DirectSoundCaptureEnumerateA(LPDSENUMCALLBACKA, LPVOID); extern HRESULT WINAPI DirectSoundCaptureEnumerateW(LPDSENUMCALLBACKW, LPVOID); +#define DirectSoundCaptureEnumerate WINELIB_NAME_AW(DirectSoundCaptureEnumerate) extern HRESULT WINAPI DirectSoundCreate8(LPCGUID lpGUID,LPDIRECTSOUND8 *ppDS8,LPUNKNOWN pUnkOuter); extern HRESULT WINAPI DirectSoundCaptureCreate8(LPCGUID lpGUID, LPDIRECTSOUNDCAPTURE8 *ppDSC8, LPUNKNOWN pUnkOuter); -- 2.11.4.GIT