mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
14 lines
410 B
C++
14 lines
410 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 setTexScalingMultiplier(int level);
|
|
void SetIngameMenuItemStates(HMENU menu, const GlobalUIState state);
|
|
}
|