parent
1f437e6f47
commit
8dd1c8b8d6
8 changed files with 34 additions and 45 deletions
@ -1,14 +0,0 @@ |
||||
#ifndef HARFBUZZ_COMMON_H |
||||
#define HARFBUZZ_COMMON_H |
||||
|
||||
#include <stdint.h> |
||||
|
||||
# ifdef __cplusplus |
||||
# define HARFBUZZ_BEGIN_DECLS() extern "C" { extern int harfbuzz_dummy_prototype (int) |
||||
# define HARFBUZZ_END_DECLS() } extern "C" int harfbuzz_dummy_prototype (int) |
||||
# else /* !__cplusplus */ |
||||
# define HARFBUZZ_BEGIN_DECLS() extern int harfbuzz_dummy_prototype (int) |
||||
# define HARFBUZZ_END_DECLS() extern int harfbuzz_dummy_prototype (int) |
||||
# endif /* !__cplusplus */ |
||||
|
||||
#endif /* HARFBUZZ_COMMON_H */ |
@ -1,11 +0,0 @@ |
||||
#ifndef HARFBUZZ_GDEF_H |
||||
#define HARFBUZZ_GDEF_H |
||||
|
||||
#include "harfbuzz-common.h" |
||||
|
||||
HARFBUZZ_BEGIN_DECLS(); |
||||
|
||||
|
||||
HARFBUZZ_END_DECLS(); |
||||
|
||||
#endif /* HARFBUZZ_GDEF_H */ |
@ -0,0 +1,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 */ |
Loading…
Reference in new issue