mirror of
https://github.com/libretro/FBNeo.git
synced 2024-11-23 17:09:43 +00:00
Fixes for stringset
This commit is contained in:
parent
7b0caf7f83
commit
85b1616a5a
@ -28,6 +28,7 @@ char* TCHARToANSI(const TCHAR* pszInString, char* pszOutString, int nOutSize);
|
||||
bool AppProcessKeyboardInput();
|
||||
|
||||
|
||||
|
||||
//config.cpp
|
||||
int ConfigAppLoad();
|
||||
int ConfigAppSave();
|
||||
@ -48,6 +49,7 @@ extern int RunReset();
|
||||
//inpdipsw.cpp
|
||||
void InpDIPSWResetDIPs();
|
||||
|
||||
|
||||
//interface/inp_interface.cpp
|
||||
int InputInit();
|
||||
int InputExit();
|
||||
@ -56,4 +58,14 @@ int InputMake(bool bCopy);
|
||||
//TODO:
|
||||
#define szAppBurnVer 1
|
||||
|
||||
class StringSet {
|
||||
public:
|
||||
TCHAR* szText;
|
||||
int nLen;
|
||||
// printf function to add text to the Bzip string
|
||||
int __cdecl Add(TCHAR* szFormat, ...);
|
||||
int Reset();
|
||||
StringSet();
|
||||
~StringSet();
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user