-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathCNFG.c
More file actions
38 lines (31 loc) · 798 Bytes
/
CNFG.c
File metadata and controls
38 lines (31 loc) · 798 Bytes
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
//Include this file to get all of rawdraw. You usually will not
//want to include this in your build, but instead, #include "CNFG.h"
//after #define CNFG_IMPLEMENTATION in one of your C files.
// Defined here for universal definition
int CNFGLastCharacter = 0;
int CNFGLastScancode = 0;
#if defined( CNFGHTTP )
#include "CNFGHTTP.c"
#elif defined( CNFG_WASM )
#include "CNFGWASMDriver.c"
#elif defined( CNFG_WINDOWS )
#include "CNFGWinDriver.c"
#elif defined( EGL_LEAN_AND_MEAN )
#include "CNFGEGLLeanAndMean.c"
#elif defined( CNFG_ANDROID )
#include "CNFGEGLDriver.c"
#else
#include "CNFGXDriver.c"
#endif
#include "CNFGFunctions.c"
#ifdef CNFGOGL
#include "CNFGOGL.c"
#endif
#ifdef CNFGVK
#ifndef CNFGCONTEXTONLY
#include "CNFGVK.c"
#endif
#endif
#ifdef CNFG3D
#include "CNFG3D.c"
#endif