~registry/dolphin-emu/triforce

« back to all changes in this revision

Viewing changes to Source/Core/VideoCommon/Src/EmuWindow.h

  • Committer: Sérgio Benjamim
  • Date: 2015-02-13 05:54:40 UTC
  • Revision ID: sergio_br2@yahoo.com.br-20150213055440-ey2rt3sjpy27km78
Dolphin Triforce branch from code.google, commit b957980 (4.0-315).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _EMUWINDOW_H
 
2
#define _EMUWINDOW_H
 
3
 
 
4
#include <windows.h>
 
5
 
 
6
namespace EmuWindow
 
7
{
 
8
 
 
9
HWND GetWnd();
 
10
HWND GetParentWnd();
 
11
HWND Create(HWND hParent, HINSTANCE hInstance, const TCHAR *title);
 
12
void Show();
 
13
void Close();
 
14
void SetSize(int displayWidth, int displayHeight);
 
15
bool IsSizing();
 
16
void OSDMenu(WPARAM wParam);
 
17
void SetWindowText(const TCHAR* text);
 
18
 
 
19
}
 
20
 
 
21
#endif