我正在为XInputGetState
获取未定义的引用,我不知道为什么。
我正在使用的标头是:XInput.h
和Windows.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作为编译器。
答案 0 :(得分:1)
好的,我明白了。 错过了这一行:
#pragma comment(lib, "XInput.lib")
有更好的解决方法吗?我觉得这很奇怪!