1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-07 00:58:40 +03:00

forgot the altered include file

(This used to be commit f3be08472b8b34d8921ff23c52dd2ba030c96f25)
This commit is contained in:
Simo Sorce 2003-02-23 18:08:07 +00:00
parent bfc5f0ba8e
commit bd0bbde1bb

View File

@ -46,8 +46,8 @@ struct parse_string {
char *s;
};
typedef int (*gen_dump_fn)(struct parse_string *, const char *ptr, unsigned indent);
typedef int (*gen_parse_fn)(char *ptr, const char *str);
typedef int (*gen_dump_fn)(TALLOC_CTX *, struct parse_string *, const char *ptr, unsigned indent);
typedef int (*gen_parse_fn)(TALLOC_CTX *, char *ptr, const char *str);
/* genstruct.pl generates arrays of these */
struct parse_struct {
@ -63,8 +63,8 @@ struct parse_struct {
};
#define DUMP_PARSE_DECL(type) \
int gen_dump_ ## type(struct parse_string *, const char *, unsigned); \
int gen_parse_ ## type(char *, const char *);
int gen_dump_ ## type(TALLOC_CTX *, struct parse_string *, const char *, unsigned); \
int gen_parse_ ## type(TALLOC_CTX *, char *, const char *);
DUMP_PARSE_DECL(char)
DUMP_PARSE_DECL(int)