basic_types.h | basic_types.h | |||
---|---|---|---|---|
#ifndef BASIC_TYPES_H | #ifndef BASIC_TYPES_H | |||
#define BASIC_TYPES_H 1 | #define BASIC_TYPES_H 1 | |||
#include <glib.h> | #include <glib.h> | |||
#include <glib/gunicode.h> | ||||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
enum { | enum { | |||
CORBA_FALSE = FALSE, | CORBA_FALSE = FALSE, | |||
CORBA_TRUE = TRUE | CORBA_TRUE = TRUE | |||
}; | }; | |||
typedef gint16 CORBA_short; | typedef gint16 CORBA_short; | |||
typedef gint32 CORBA_long; | typedef gint32 CORBA_long; | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 0 lines changed or added | |||
orbit-config.h | orbit-config.h | |||
---|---|---|---|---|
#ifndef ORBIT_CONFIG_H | #ifndef ORBIT_CONFIG_H | |||
#define ORBIT_CONFIG_H 1 | #define ORBIT_CONFIG_H 1 | |||
#define ORBIT_CONFIG_SERIAL 20 | #define ORBIT_CONFIG_SERIAL 20 | |||
#ifndef ORBIT_MAJOR_VERSION | #ifndef ORBIT_MAJOR_VERSION | |||
#define ORBIT_MAJOR_VERSION (2) | #define ORBIT_MAJOR_VERSION (2) | |||
#define ORBIT_MINOR_VERSION (14) | #define ORBIT_MINOR_VERSION (14) | |||
#define ORBIT_MICRO_VERSION (12) | #define ORBIT_MICRO_VERSION (13) | |||
#endif | #endif | |||
#define ORBIT_IMPLEMENTS_IS_A 1 | #define ORBIT_IMPLEMENTS_IS_A 1 | |||
/* | /* | |||
* Alignment of CORBA types mapped to C. | * Alignment of CORBA types mapped to C. | |||
* These have *nothing* to do with CDR alignment. | * These have *nothing* to do with CDR alignment. | |||
*/ | */ | |||
#define ORBIT_ALIGNOF_CORBA_OCTET 1 | #define ORBIT_ALIGNOF_CORBA_OCTET 1 | |||
#define ORBIT_ALIGNOF_CORBA_BOOLEAN 1 | #define ORBIT_ALIGNOF_CORBA_BOOLEAN 1 | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
orbit-idl-backend.h | orbit-idl-backend.h | |||
---|---|---|---|---|
skipping to change at line 28 | skipping to change at line 28 | |||
* Free Software Foundation, Inc., 59 Temple Place - Suite 330, | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |||
* Boston, MA 02111-1307, USA. | * Boston, MA 02111-1307, USA. | |||
* | * | |||
* Authors: | * Authors: | |||
* Mark McLoughlin <mark@skynet.ie> | * Mark McLoughlin <mark@skynet.ie> | |||
*/ | */ | |||
#ifndef __ORBIT_IDL_BACKEND_H__ | #ifndef __ORBIT_IDL_BACKEND_H__ | |||
#define __ORBIT_IDL_BACKEND_H__ | #define __ORBIT_IDL_BACKEND_H__ | |||
#include <glib/gmacros.h> | #include <glib.h> | |||
#include <libIDL/IDL.h> | #include <libIDL/IDL.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
typedef struct { | typedef struct { | |||
IDL_tree tree; | IDL_tree tree; | |||
char *filename; | char *filename; | |||
guint do_stubs : 1; | guint do_stubs : 1; | |||
guint do_skels : 1; | guint do_skels : 1; | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
orbit-imodule.h | orbit-imodule.h | |||
---|---|---|---|---|
skipping to change at line 27 | skipping to change at line 27 | |||
* License along with this library; if not, write to the | * License along with this library; if not, write to the | |||
* Free Software Foundation, Inc., 59 Temple Place - Suite 330, | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |||
* Boston, MA 02111-1307, USA. | * Boston, MA 02111-1307, USA. | |||
* | * | |||
* Authors: | * Authors: | |||
* Mark McLoughlin <mark@skynet.ie> | * Mark McLoughlin <mark@skynet.ie> | |||
*/ | */ | |||
#ifndef __ORBIT_IMODULE_H__ | #ifndef __ORBIT_IMODULE_H__ | |||
#define __ORBIT_IMODULE_H__ | #define __ORBIT_IMODULE_H__ | |||
#include <glib/gmacros.h> | #include <glib.h> | |||
#include <orbit/orb-core/orbit-interface.h> | #include <orbit/orb-core/orbit-interface.h> | |||
#include <libIDL/IDL.h> | #include <libIDL/IDL.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
ORBit_IInterfaces *ORBit_iinterfaces_from_file (const char *path, | ORBit_IInterfaces *ORBit_iinterfaces_from_file (const char *path, | |||
const char *cpp_args, | const char *cpp_args, | |||
CORBA_sequence_CORBA_TypeCod e **typecodes_ret); | CORBA_sequence_CORBA_TypeCod e **typecodes_ret); | |||
ORBit_IInterfaces *ORBit_iinterfaces_from_tree (IDL_tree tree, | ORBit_IInterfaces *ORBit_iinterfaces_from_tree (IDL_tree tree, | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||