mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 22:29:39 -06:00
Remove unnecessary Src/ folders
This commit is contained in:
21
Source/Core/VideoCommon/EmuWindow.h
Normal file
21
Source/Core/VideoCommon/EmuWindow.h
Normal file
@ -0,0 +1,21 @@
|
||||
#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);
|
||||
void SetWindowText(const TCHAR* text);
|
||||
|
||||
}
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user