00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00027 #ifndef SCIMBRIDE_H_
00028 #define SCIMBRIDE_H_
00029
00030 #ifdef HAVE_CONFIG_H
00031 #include "config.h"
00032 #endif
00033
00034 #include <sys/types.h>
00035
00036 #ifndef SCIM_VERSION
00037 #define SCIM_VERSION "<unknown>"
00038 #endif
00039
00040 #define _(String) gettext(String)
00041 #define N_(String) gettext_noop(String)
00042 #define gettext_noop(String) (String)
00043
00044 #ifndef NPOS
00045 #define NPOS -1
00046 #endif
00047
00051 typedef int boolean;
00052
00053 #ifndef TRUE
00054 #define TRUE 1
00055 #endif
00056
00057 #ifndef FALSE
00058 #define FALSE 0
00059 #endif
00060
00061 #ifndef NULL
00062 #define NULL 0
00063 #endif
00064
00068 typedef int retval_t;
00069
00073 #define RETVAL_FAILED -1
00074
00078 #define RETVAL_SUCCEEDED 0
00079
00083 #define RETVAL_IGNORED 1
00084 #endif