2018-02-11 20:43:26 +00:00
|
|
|
#include "linux/interface.h"
|
|
|
|
|
|
|
|
// Resources
|
|
|
|
|
|
|
|
HRSRC FindResource(void *, const std::string & filename, const char *)
|
|
|
|
{
|
|
|
|
return HRSRC();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Frame
|
|
|
|
|
|
|
|
void FrameDrawDiskLEDS(HDC x) { }
|
|
|
|
void FrameDrawDiskStatus(HDC x) { }
|
|
|
|
void FrameRefreshStatus(int x, bool) { }
|
|
|
|
|
|
|
|
// Keyboard
|
|
|
|
|
|
|
|
BYTE KeybGetKeycode () { return 0; }
|
2018-08-25 21:17:55 +01:00
|
|
|
BYTE KeybReadData() { return 0; }
|
|
|
|
BYTE KeybReadFlag() { return 0; }
|
2018-02-11 20:43:26 +00:00
|
|
|
|
|
|
|
// Joystick
|
|
|
|
|
|
|
|
BYTE __stdcall JoyReadButton(WORD pc, WORD addr, BYTE bWrite, BYTE d, ULONG nCyclesLeft) { return 0; }
|
|
|
|
BYTE __stdcall JoyReadPosition(WORD pc, WORD addr, BYTE bWrite, BYTE d, ULONG nCyclesLeft) { return 0; }
|
2019-04-19 21:13:00 +01:00
|
|
|
void JoyResetPosition(ULONG nCyclesLeft) { }
|
2018-02-11 20:43:26 +00:00
|
|
|
|
|
|
|
// Speaker
|
|
|
|
|
|
|
|
BYTE __stdcall SpkrToggle (WORD pc, WORD addr, BYTE bWrite, BYTE d, ULONG nCyclesLeft) { return 0; }
|
|
|
|
|
|
|
|
// Registry
|
|
|
|
|
|
|
|
BOOL RegLoadString (LPCTSTR section, LPCTSTR key, BOOL peruser, LPTSTR buffer, DWORD chars) { return FALSE; }
|
|
|
|
BOOL RegLoadValue (LPCTSTR section, LPCTSTR key, BOOL peruser, DWORD *value) { return FALSE; }
|
|
|
|
BOOL RegLoadValue (LPCTSTR section, LPCTSTR key, BOOL peruser, BOOL *value) { return FALSE; }
|
2019-09-21 09:58:29 +01:00
|
|
|
void RegSaveString (LPCTSTR section, LPCTSTR key, BOOL peruser, const std::string & buffer) { }
|
2018-02-11 20:43:26 +00:00
|
|
|
void RegSaveValue (LPCTSTR section, LPCTSTR key, BOOL peruser, DWORD value) { }
|
|
|
|
|
|
|
|
// MessageBox
|
|
|
|
|
|
|
|
int MessageBox(HWND, const char * text, const char * caption, UINT type) { return 0; }
|