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