Skip to content

Latest commit

 

History

History
66 lines (51 loc) · 1.82 KB

platform.h

File metadata and controls

66 lines (51 loc) · 1.82 KB
 
1
2
3
4
5
6
7
8
9
#ifndef _INCL_PLATFORM_H_
#define _INCL_PLATFORM_H_
#include "universal.h"
#ifdef __cplusplus
extern "C" {
#endif
Mar 25, 2006
Mar 25, 2006
10
// this is called by your mainline.
Mar 25, 2006
Mar 25, 2006
11
int MojoSetup_main(int argc, char **argv);
Dec 9, 2006
Dec 9, 2006
13
// Caller must free returned string!
Dec 9, 2006
Dec 9, 2006
14
char *MojoPlatform_appBinaryPath(void);
Mar 25, 2006
Mar 25, 2006
15
Dec 4, 2006
Dec 4, 2006
16
17
uint32 MojoPlatform_ticks(void);
Dec 9, 2006
Dec 9, 2006
18
19
20
21
22
23
24
// Make current process kill itself immediately, without any sort of internal
// cleanup, like atexit() handlers or static destructors...the OS will have
// to sort out the freeing of any resources, and no more code in this
// process than necessary should run. This function does not return. Try to
// avoid calling this.
void MojoPlatform_die(void);
Dec 3, 2006
Dec 3, 2006
25
26
27
28
29
30
// Get the current locale, in the format "xx_YY" where "xx" is the language
// (en, fr, de...) and "_YY" is the country. (_US, _CA, etc). The country
// can be omitted. Don't include encoding, it's always UTF-8 at this time.
// Return true if locale is known, false otherwise.
boolean MojoPlatform_locale(char *buf, size_t len);
Dec 4, 2006
Dec 4, 2006
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
boolean MojoPlatform_osType(char *buf, size_t len);
boolean MojoPlatform_osVersion(char *buf, size_t len);
// Basic platform detection.
#if PLATFORM_WINDOWS
#define PLATFORM_NAME "windows"
#elif PLATFORM_MACOSX
#define PLATFORM_NAME "macosx"
#elif PLATFORM_UNIX
#define PLATFORM_NAME "unix"
#else
#error Unknown processor architecture.
#endif
// Basic architecture detection.
#if defined(__powerpc64__)
#define PLATFORM_ARCH "powerpc64"
#elif defined(__ppc__) || defined(__powerpc__) || defined(__POWERPC__)
#define PLATFORM_ARCH "powerpc"
#elif defined(__x86_64__) || defined(_M_X64)
#define PLATFORM_ARCH "x86-64"
#elif defined(__X86__) || defined(__i386__) || defined(i386) || defined (_M_IX86) || defined(__386__)
#define PLATFORM_ARCH "x86"
#else
#error Unknown processor architecture.
#endif
59
60
61
62
63
64
#ifdef __cplusplus
}
#endif
#endif
Mar 25, 2006
Mar 25, 2006
65
// end of platform.h ...