mirror of
https://github.com/libretro/ppsspp.git
synced 2025-01-23 09:34:55 +00:00
20 lines
376 B
C++
20 lines
376 B
C++
#pragma once
|
|
|
|
#include <windows.h>
|
|
|
|
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 _ViewFullScreen(HWND hWnd);
|
|
void _ViewNormal(HWND hWnd);
|
|
}
|