2015-09-19 13:11:06 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "Common/CommonWindows.h"
|
|
|
|
|
#include <Windowsx.h>
|
2024-01-18 11:55:39 +01:00
|
|
|
|
|
|
|
|
#include "Common/System/Request.h"
|
2021-02-28 07:51:38 -08:00
|
|
|
#include "Core/System.h"
|
2015-09-19 13:11:06 +02:00
|
|
|
|
|
|
|
|
namespace MainWindow {
|
|
|
|
|
void MainWindowMenu_Process(HWND hWnd, WPARAM wParam);
|
2015-09-19 14:43:50 +02:00
|
|
|
void TranslateMenus(HWND hWnd, HMENU menu);
|
2024-01-18 11:55:39 +01:00
|
|
|
void BrowseAndBoot(RequesterToken token, std::string defaultPath, bool browseDirectory = false);
|
2015-09-19 14:43:50 +02:00
|
|
|
void setTexScalingMultiplier(int level);
|
2017-04-04 10:08:41 +02:00
|
|
|
void SetIngameMenuItemStates(HMENU menu, const GlobalUIState state);
|
2015-09-19 13:11:06 +02:00
|
|
|
}
|