File: engine.h

package info (click to toggle)
opensync 0.22-4squeeze1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 4,720 kB
  • ctags: 2,595
  • sloc: ansic: 28,108; sh: 8,926; makefile: 433
file content (31 lines) | stat: -rw-r--r-- 673 bytes parent folder | download | duplicates (3)
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