mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
bd6764b65e
Also,make "switch umd" menu enable faster,
15 lines
389 B
C++
15 lines
389 B
C++
#pragma once
|
|
|
|
#include "Common/CommonWindows.h"
|
|
#include "Common/KeyMap.h"
|
|
#include <Windowsx.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 setTexScalingMultiplier(int level);
|
|
void ChangeMenu();
|
|
}
|