mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
18 lines
652 B
C++
18 lines
652 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include "Common/CommonWindows.h"
|
|
#include "Common/Common.h"
|
|
|
|
enum class InputBoxFlags {
|
|
Default = 0,
|
|
Selected = 1,
|
|
PasswordMasking = 2,
|
|
};
|
|
ENUM_CLASS_BITOPS(InputBoxFlags);
|
|
|
|
// All I/O is in UTF-8
|
|
bool InputBox_GetString(HINSTANCE hInst, HWND hParent, const wchar_t *title, std::string_view defaultvalue, std::string &outvalue, InputBoxFlags flags = InputBoxFlags::Default);
|
|
bool InputBox_GetHex(HINSTANCE hInst, HWND hParent, const wchar_t *title, u32 defaultvalue, u32 &outvalue);
|
|
|
|
bool UserPasswordBox_GetStrings(HINSTANCE hInst, HWND hParent, const wchar_t *title, std::string *username, std::string *password);
|