mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-11 16:49:12 +01:00
16 lines
278 B
C
16 lines
278 B
C
|
#ifndef _EMUWINDOW_H
|
||
|
#define _EMUWINDOW_H
|
||
|
|
||
|
#include <windows.h>
|
||
|
|
||
|
namespace EmuWindow
|
||
|
{
|
||
|
HWND GetWnd();
|
||
|
HWND Create(HWND hParent, HINSTANCE hInstance, const TCHAR *title);
|
||
|
void Show();
|
||
|
void Close();
|
||
|
void SetSize(int displayWidth, int displayHeight);
|
||
|
}
|
||
|
|
||
|
#endif
|