summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Src/EmuWindow.h
blob: 1403ffcf5764ea9847afe2fad26f732fd2f20297 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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);
bool IsSizing();
void OSDMenu(WPARAM wParam);

}

#endif