2008-12-08 04:46:09 +00:00
|
|
|
#ifndef _EMUWINDOW_H
|
|
|
|
#define _EMUWINDOW_H
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
namespace EmuWindow
|
|
|
|
{
|
2009-09-13 17:46:33 +00:00
|
|
|
|
|
|
|
HWND GetWnd();
|
|
|
|
HWND GetParentWnd();
|
|
|
|
HWND Create(HWND hParent, HINSTANCE hInstance, const TCHAR *title);
|
|
|
|
void Show();
|
|
|
|
void Close();
|
|
|
|
void SetSize(int displayWidth, int displayHeight);
|
|
|
|
bool IsSizing();
|
2010-01-29 07:44:21 +00:00
|
|
|
void OSDMenu(WPARAM wParam);
|
2011-12-19 23:13:26 +00:00
|
|
|
void SetWindowText(const TCHAR* text);
|
2009-09-13 17:46:33 +00:00
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|