CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hrydgard

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: hrydgard/ppsspp
Path: blob/master/Windows/MainWindowMenu.h
Views: 1401
1
#pragma once
2
3
#include "Common/CommonWindows.h"
4
#include <Windowsx.h>
5
6
#include "Common/System/Request.h"
7
#include "Core/System.h"
8
9
namespace MainWindow {
10
void MainWindowMenu_Process(HWND hWnd, WPARAM wParam);
11
void TranslateMenus(HWND hWnd, HMENU menu);
12
void BrowseAndBoot(RequesterToken token, std::string defaultPath, bool browseDirectory = false);
13
void setTexScalingMultiplier(int level);
14
void SetIngameMenuItemStates(HMENU menu, const GlobalUIState state);
15
}
16
17