mirror of
https://github.com/libretro/ppsspp.git
synced 2024-12-12 19:07:34 +00:00
18 lines
330 B
C++
18 lines
330 B
C++
#pragma once
|
|
|
|
|
|
namespace MainWindow
|
|
{
|
|
void Init(HINSTANCE hInstance);
|
|
BOOL Show(HINSTANCE hInstance, int nCmdShow);
|
|
void Close();
|
|
void UpdateMenus();
|
|
void Update();
|
|
void Redraw();
|
|
HWND GetHWND();
|
|
HINSTANCE GetHInstance();
|
|
HWND GetDisplayHWND();
|
|
void SetPlaying(const char*text);
|
|
void RequestWindowSize(int w, int h);
|
|
}
|