From 52728b7d416f7837fc3460a9e131355094649b15 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Fri, 23 Dec 2005 12:29:13 +0000 Subject: r12446: Merge mkproto.sh's functionality into mkproto.pl Allow specifying the _PUBLIC_ keyword on functions to indicate a function is public. Public prototypes can now be written to a seperate header, although this functionality is not used yet. (This used to be commit e3466df6dfb62bbf8bee3acfa92996945054c2dd) --- source4/include/includes.h | 2 ++ source4/include/structs.h | 2 ++ 2 files changed, 4 insertions(+) (limited to 'source4/include') diff --git a/source4/include/includes.h b/source4/include/includes.h index 18fc38031c..9f5679fa80 100644 --- a/source4/include/includes.h +++ b/source4/include/includes.h @@ -160,4 +160,6 @@ extern int DEBUGLEVEL; #define discard_const(ptr) ((void *)((intptr_t)(ptr))) #define discard_const_p(type, ptr) ((type *)discard_const(ptr)) +#define _PUBLIC_ + #endif /* _INCLUDES_H */ diff --git a/source4/include/structs.h b/source4/include/structs.h index b652579edd..a7dd758b5c 100644 --- a/source4/include/structs.h +++ b/source4/include/structs.h @@ -370,3 +370,5 @@ struct smb2_handle; struct com_context; struct IUnknown; struct IUnknown_vtable; + +struct MprVar; -- cgit