hb-common.h 434 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#ifndef HB_COMMON_H
#define HB_COMMON_H

#include <stdint.h>

# ifdef __cplusplus
#  define HB_BEGIN_DECLS() extern "C" { extern int hb_dummy_prototype (int)
#  define HB_END_DECLS() } extern "C" int hb_dummy_prototype (int)
# else /* !__cplusplus */
#  define HB_BEGIN_DECLS()   extern int hb_dummy_prototype (int)
#  define HB_END_DECLS()     extern int hb_dummy_prototype (int)
# endif /* !__cplusplus */

#endif /* HB_COMMON_H */