12 lines
248 B
C++
12 lines
248 B
C++
#pragma once
|
|
#define DIRECTINPUT_VERSION 0x0800
|
|
#include <dinput.h>
|
|
|
|
namespace TLAC::Input
|
|
{
|
|
extern IDirectInput8 *IDirectInputInstance;
|
|
|
|
HRESULT InitializeDirectInput(HMODULE module);
|
|
bool DirectInputInitialized();
|
|
void DisposeDirectInput();
|
|
} |