mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 21:39:52 +00:00
17 lines
493 B
C++
17 lines
493 B
C++
#pragma once
|
|
|
|
#include "Common/CommonWindows.h"
|
|
#include <Windowsx.h>
|
|
#include "Core/System.h"
|
|
|
|
namespace MainWindow {
|
|
void MainWindowMenu_Process(HWND hWnd, WPARAM wParam);
|
|
void TranslateMenus(HWND hWnd, HMENU menu);
|
|
void BrowseAndBoot(std::string defaultPath, bool browseDirectory = false);
|
|
void BrowseAndBootDone();
|
|
void BrowseBackground();
|
|
void BrowseBackgroundDone();
|
|
void setTexScalingMultiplier(int level);
|
|
void SetIngameMenuItemStates(HMENU menu, const GlobalUIState state);
|
|
}
|