dxutsound.h(36) : error C2143: 语法错误 : 缺少“;

02_texcolorblend\common\dxutsound.h(36) : error C2143: 语法错误 : 缺少“;”(在“*”的前面)


这个是因为win7和directx10及directx11不支持IDirectSound8,将IDirectSound8改为IDirectSound,LPDIRECTSOUND8改为LPDIRECTSOUND,反正碰到与sound相关的,将后面的8去掉,我编译通过没问题

我也遇到这种问题 没必要去掉 inline LPDIRECTSOUND8 GetDirectSound()  
把IDirectSound8改成IDirectSound之后出现无法解析外部命令问题,后来发现是代码中没有包括控件的DXUTgui.h  DXUTgui.cpp  DXUTSettingsDlg.h 和DXUTSettingsDlg.cpp这四个文件 包含进去即可成功编译


右击common->add->existing item ->common->{DXUTgui.cpp DXUTgui.h DXUTSettingDlg.cpp DXUTSettingDlg.h} ->Add



Re: 请教 V_RETURN 什么意思?

这个应该是dxstdafx.h中定义的宏

#if defined(DEBUG) || defined(_DEBUG)
#ifndef V
#define V(x)           { hr = x; if( FAILED(hr) ) { DXUTTrace( __FILE__, (DWORD)__LINE__, hr, L#x, true ); } }
#endif
#ifndef V_RETURN
#define V_RETURN(x)    { hr = x; if( FAILED(hr) ) { return DXUTTrace( __FILE__, (DWORD)__LINE__, hr, L#x, true ); } }
#endif
#else
#ifndef V
#define V(x)           { hr = x; }
#endif
#ifndef V_RETURN
#define V_RETURN(x)    { hr = x; if( FAILED(hr) ) { return hr; } }
#endif
#endif

你可能感兴趣的:(dxutsound.h(36) : error C2143: 语法错误 : 缺少“;)