mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
16 lines
291 B
C++
16 lines
291 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);
|
|
}
|