/
driver3.2@242/autoconf/
driver3.2@242/doc/LPC/
driver3.2@242/hosts/
driver3.2@242/hosts/amiga/NetIncl/
driver3.2@242/hosts/amiga/NetIncl/netinet/
driver3.2@242/hosts/amiga/NetIncl/sys/
driver3.2@242/hosts/atari/
driver3.2@242/hosts/fcrypt/
driver3.2@242/mudlib/
driver3.2@242/mudlib/sys/
driver3.2@242/util/
driver3.2@242/util/indent/hosts/next/
driver3.2@242/util/make_docs/
#ifndef FUNCTIONLIST_H
#define FUNCTIONLIST_H

#include <sys/lpctypes.h>

#define RETURN_FUNCTION_NAME	0x01
#define RETURN_FUNCTION_FLAGS	0x02
#define RETURN_FUNCTION_TYPE	0x04
#define RETURN_FUNCTION_NUMARG	0x08
#define RETURN_FUNCTION_ARGTYPE 0x10 /* not implemented */

#define NAME_INHERITED          0x80000000 /* Defined by inheritance         */
#define TYPE_MOD_STATIC         0x40000000 /* Static function or variable    */
#define TYPE_MOD_NO_MASK        0x20000000 /* The nomask => not redefineable */
#define TYPE_MOD_PRIVATE        0x10000000 /* Can't be inherited             */
#define TYPE_MOD_PUBLIC         0x08000000 /* Force inherit through private  */
#define TYPE_MOD_VARARGS        0x04000000 /* Used for type checking         */
#define NAME_HIDDEN             0x00000800 /* Not visible for inheritance    */
#define NAME_UNDEFINED          0x00000200 /* Not defined yet                */

#endif /* FUNCTIONLIST_H */