18 lines
228 B
C
18 lines
228 B
C
|
#ifndef PLATFORM_H
|
||
|
#define PLATFORM_H
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
namespace Platform
|
||
|
{
|
||
|
char * ExecutableName();
|
||
|
void DoRestart();
|
||
|
|
||
|
void OpenURI(std::string uri);
|
||
|
|
||
|
void Millisleep(long int t);
|
||
|
long unsigned int GetTime();
|
||
|
}
|
||
|
|
||
|
#endif
|