mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-11 08:39:13 +01:00
8b129fca0c
OSD and Hotkey to do quick config toggling git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4984 8ced0084-cf51-0410-be5f-012b33b47a6e
22 lines
389 B
C++
22 lines
389 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);
|
|
void ToggleFullscreen(HWND hParent, bool bForceFull = false);
|
|
bool IsSizing();
|
|
void OSDMenu(WPARAM wParam);
|
|
|
|
}
|
|
|
|
#endif
|