OpenSync  0.22
engine.h
1 #ifndef HAVE_ENGINE_H
2 #define HAVE_ENGINE_H
3 
4 #include <opensync/opensync.h>
5 
6 #ifdef __cplusplus
7 extern "C"
8 {
9 #endif
10 
11 /**************************************************************
12  * Structs
13  *************************************************************/
14 typedef struct OSyncEngine OSyncEngine;
15 typedef struct OSyncClient OSyncClient;
16 typedef struct OSyncMapping OSyncMapping;
17 
18 /**************************************************************
19  * Includes
20  *************************************************************/
21 
22 #include "osengine_status.h"
23 #include "osengine_engine.h"
24 #include "osengine_mapping.h"
25 #include "osengine_debug.h"
26 
27 #ifdef __cplusplus
28 }
29 #endif
30 
31 #endif