mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2024-11-25 17:53:47 +00:00
18 lines
599 B
C++
18 lines
599 B
C++
#ifndef BBGE_OSFUNCTIONS_H
|
|
#define BBGE_OSFUNCTIONS_H
|
|
|
|
#include <string>
|
|
|
|
void initIcon(void *screen);
|
|
void destroyIcon();
|
|
void messageBox(const std::string &title, const std::string& msg);
|
|
void forEachFile(const std::string& inpath, std::string type, void callback(const std::string &filename, void *param), void *param = 0);
|
|
std::string adjustFilenameCase(const char *_buf);
|
|
std::string adjustFilenameCase(const std::string&);
|
|
bool createDir(const std::string& d);
|
|
void triggerBreakpoint();
|
|
void openURL(const std::string &url);
|
|
std::string getSystemLocale();
|
|
std::string getWorkingDir();
|
|
|
|
#endif
|