2008-07-12 17:40:22 +00:00
|
|
|
#ifndef _EMUWINDOW_H
|
|
|
|
#define _EMUWINDOW_H
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
namespace EmuWindow
|
|
|
|
{
|
|
|
|
HWND GetWnd();
|
2008-07-17 09:18:03 +00:00
|
|
|
HWND GetParentWnd();
|
2008-07-12 17:40:22 +00:00
|
|
|
HWND Create(HWND hParent, HINSTANCE hInstance, const TCHAR *title);
|
|
|
|
void Show();
|
|
|
|
void Close();
|
|
|
|
void SetSize(int displayWidth, int displayHeight);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|