1 | | |
2 | | |
3 | | |
4 | | |
5 | | |
6 | | |
7 | | |
8 | | |
9 | | |
10 | | |
11 | | |
12 | | |
13 | | |
14 | | |
15 | | |
16 | | |
17 | | |
18 | | |
19 | | |
20 | | |
21 | | |
22 | | |
23 | | |
24 | | |
25 | | |
26 | | |
27 | | |
28 | | |
29 | | |
30 | | |
31 | | |
32 | | |
33 | | |
34 | | |
35 | | |
36 | | |
37 | | |
38 | | |
39 | | |
40 | | |
41 | | |
42 | | |
43 | | |
44 | | |
45 | | |
46 | | |
47 | | |
48 | | |
49 | | |
50 | | |
51 | | |
52 | | |
53 | | |
54 | | |
55 | | |
56 | | |
57 | | |
| | | | | | | | #ifndef MODULE_SUPPORT_H | #include <stdarg.h> | | enum error_type { | ERR_NONE, | ERR_TOO_FEW, | ERR_TOO_MANY, | ERR_BAD_ARG | }; | | struct expect_result { | enum error_type error_type; | int argno; | unsigned INT32 expected; | TYPE_T got; | }; | | | #define PIKE_MODULE_EXPORT(MOD, SYM) \ | pike_module_export_symbol(#MOD "." #SYM, CONSTANT_STRLEN(#MOD "." #SYM), (void *)SYM) | | #define PIKE_MODULE_IMPORT(MOD, SYM) \ | pike_module_import_symbol(#MOD "." #SYM, CONSTANT_STRLEN(#MOD "." #SYM), #MOD, CONSTANT_STRLEN(#MOD)) | | | | PMOD_EXPORT int check_args(int args, ...); | PMOD_EXPORT void check_all_args(const char *fnname, int args, ... ); | int va_get_args(struct svalue *s, | INT32 num_args, | const char *fmt, | va_list ap); | PMOD_EXPORT int get_args(struct svalue *s, | INT32 num_args, | const char *fmt, ...); | PMOD_EXPORT void get_all_args(const char *fname, INT32 args, | const char *format, ... ); | PMOD_EXPORT void pike_module_export_symbol(const char *str, | int len, | void *ptr); | PMOD_EXPORT void *pike_module_import_symbol(const char *str, | int len, | const char *module, | int module_len); | void cleanup_module_support (void); | | | #endif | | |
|