链接器错误与xbox 360控制器函数

时间:2016-07-28 08:05:33

标签: c++ controller xbox

我正在为XInputGetState获取未定义的引用,我不知道为什么。 我正在使用的标头是:XInput.hWindows.h

FIRSTPLAYER只是常量0

XINPUT_STATE state;
ZeroMemory( &state, sizeof(XINPUT_STATE) );
// Simply get the state of the controller from XInput.
dwResult = XInputGetState( FIRSTPLAYER, &state );

任何建议都会很好。

我正在使用CodeBlocks IDE和MinGW作为编译器。

1 个答案:

答案 0 :(得分:1)

好的,我明白了。 错过了这一行:

#pragma comment(lib, "XInput.lib") 

有更好的解决方法吗?我觉得这很奇怪!