1 #ifndef GIOP_BASICS_H
2 #define GIOP_BASICS_H 1
3 
4 #include <linc/linc.h>
5 
6 G_BEGIN_DECLS
7 
8 #ifdef ORBIT2_INTERNAL_API
9 
10 typedef struct _GIOPRecvBuffer GIOPRecvBuffer;
11 typedef struct _GIOPSendBuffer GIOPSendBuffer;
12 typedef struct _GIOPConnection GIOPConnection;
13 
14 typedef enum {
15   GIOP_1_0,
16   GIOP_1_1,
17   GIOP_1_2,
18   GIOP_LATEST = GIOP_1_2,
19   GIOP_NUM_VERSIONS
20 } GIOPVersion;
21 
22 #endif /* ORBIT2_INTERNAL_API */
23 
24 G_END_DECLS
25 
26 #endif
27