mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 13:57:57 -07:00
30c883bcfc
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1438 8ced0084-cf51-0410-be5f-012b33b47a6e
17 lines
285 B
C++
17 lines
285 B
C++
#ifndef _EMUWINDOW_H
|
|
#define _EMUWINDOW_H
|
|
|
|
#include <windows.h>
|
|
|
|
namespace EmuWindow
|
|
{
|
|
HWND GetWnd();
|
|
HWND GetParentWnd();
|
|
HWND Create(HWND hParent, HINSTANCE hInstance, const TCHAR *title);
|
|
void Show();
|
|
void Close();
|
|
void SetSize(int displayWidth, int displayHeight);
|
|
}
|
|
|
|
#endif
|