Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SDL_main.h « SDL2 « include « sdlew « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9f7386af065e257a0fa630afb2c9677bf4f390a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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

#ifndef _SDL_main_h
#define _SDL_main_h

#include "SDL_stdinc.h"

#ifndef SDL_MAIN_HANDLED
#if defined(__WIN32__)

#define SDL_MAIN_AVAILABLE

#elif defined(__IPHONEOS__)

#define SDL_MAIN_NEEDED

#elif defined(__ANDROID__)

#define SDL_MAIN_NEEDED

#endif
#endif

#ifdef __cplusplus
#define C_LINKAGE   "C"
#else
#define C_LINKAGE
#endif

#if defined(SDL_MAIN_NEEDED) || defined(SDL_MAIN_AVAILABLE)
#define main    SDL_main
#endif

extern C_LINKAGE int SDL_main(int argc, char *argv[]);

#include "begin_code.h"
#ifdef __cplusplus
extern "C" {
#endif

extern DECLSPEC void SDL_SetMainReady(void);

#ifdef __WIN32__

typedef int SDLCALL tSDL_RegisterApp(char *name, Uint32 style,
                                            void *hInst);
typedef void SDLCALL tSDL_UnregisterApp(void);

#endif

#ifdef __cplusplus
}
#endif
#include "close_code.h"

#endif