blob: 9cb7fb3e046a6b707855a2f2a331bde3b8772147 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef MAIN_PRIVATE_H
#define MAIN_PRIVATE_H
#ifdef __cplusplus
extern "C"
{
#endif
int engine_main(void);
#ifdef __cplusplus
}
#endif
#endif /* MAIN_PRIVATE_H */
|