我有一小段代码,IDirectDraw :: GetCaps返回DDERR_INVALIDPARAMS
(a.k.a。E_INVALIDARG
,a.k.a。0x80070057)。
加载的dll是ddraw.dll 5.03.2600.5512(xpsp.080413-0845)
我需要检查显示硬件是否有3D加速(DDCAPS_3D)。
我不知道要解决这个问题,片段是如此简单,我错过了什么?
非常感谢。
的Alessandro
#include <ddraw.h>
#include <iostream>
#define TEST_HR(hr) if(hr!=DD_OK){ std::cout << "Error 0x" << std::hex << static_cast<unsigned long>(hr) << " at line: " << std::dec << __LINE__; return __LINE__;}
int main(int argc, char* argv[])
{
::CoInitialize( 0 );
IDirectDraw* dd;
TEST_HR( ::DirectDrawCreate( 0, &dd, 0 ) );
DDCAPS hel_caps, hw_caps;
::ZeroMemory( &hel_caps, sizeof( DDCAPS ) );
::ZeroMemory( &hw_caps, sizeof( DDCAPS ) );
TEST_HR( dd->GetCaps( &hw_caps, &hel_caps ) );
::CoUninitialize();
return 0;
}
答案 0 :(得分:4)
与大多数DirectX结构一样,您需要在将DDCAPS结构传递给DirectX之前设置其大小。
::ZeroMemory( &hel_caps, sizeof( DDCAPS ) );
::ZeroMemory( &hw_caps, sizeof( DDCAPS ) );
hel_caps.dwSize = sizeof( DDCAPS );
hw_caps.dwSize = sizeof( DDCAPS );