blob: 30e7262a4fd45d01544d74b5f386da690ea10bc0 (
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
|
#ifndef HAVE_ENGINE_H
#define HAVE_ENGINE_H
#include <opensync/opensync.h>
#ifdef __cplusplus
extern "C"
{
#endif
/**************************************************************
* Structs
*************************************************************/
typedef struct OSyncEngine OSyncEngine;
typedef struct OSyncClient OSyncClient;
typedef struct OSyncMapping OSyncMapping;
/**************************************************************
* Includes
*************************************************************/
#include "osengine_status.h"
#include "osengine_engine.h"
#include "osengine_mapping.h"
#include "osengine_debug.h"
#ifdef __cplusplus
}
#endif
#endif
|