2012-11-01 15:19:01 +00:00
|
|
|
#pragma once
|
|
|
|
|
2018-03-22 21:14:19 +00:00
|
|
|
#include <string>
|
2013-07-29 04:01:49 +00:00
|
|
|
#include "Common/CommonWindows.h"
|
2013-08-26 17:00:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
// All I/O is in UTF-8
|
|
|
|
bool InputBox_GetString(HINSTANCE hInst, HWND hParent, const wchar_t *title, const std::string &defaultvalue, std::string &outvalue, bool selected);
|
|
|
|
bool InputBox_GetString(HINSTANCE hInst, HWND hParent, const wchar_t *title, const std::string &defaultvalue, std::string &outvalue);
|
2013-08-27 11:20:41 +00:00
|
|
|
bool InputBox_GetWString(HINSTANCE hInst, HWND hParent, const wchar_t *title, const std::wstring &defaultvalue, std::wstring &outvalue);
|
2013-08-26 17:00:16 +00:00
|
|
|
bool InputBox_GetHex(HINSTANCE hInst, HWND hParent, const wchar_t *title, u32 defaultvalue, u32 &outvalue);
|