mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-11-19 19:33:03 +00:00
2a7191f5ce
. Moved DirectInput.cpp/h and WinVideo.cpp/h to a new "Windows" folder.
10 lines
175 B
C++
10 lines
175 B
C++
#pragma once
|
|
|
|
|
|
namespace DIMouse
|
|
{
|
|
HRESULT DirectInputInit( HWND hDlg );
|
|
void DirectInputUninit( HWND hDlg );
|
|
HRESULT ReadImmediateData( long* pX=NULL, long* pY=NULL );
|
|
};
|