From d6ee7ec642cc6b3097c8d321a1a00630e24027d1 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sat, 16 Feb 2008 12:22:33 +0000 Subject: initial client-to-server connection --- src/core/func.h | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'src/core/func.h') diff --git a/src/core/func.h b/src/core/func.h index d98e954..3d91ab1 100644 --- a/src/core/func.h +++ b/src/core/func.h @@ -20,12 +20,17 @@ namespace core class Func_t { public: - /// pointer to the function - void *ptr; - /// name of the function - std::string name; + Func_t(unsigned int fflags = 0); + /// flags - unsigned int flags; + unsigned int flags(); + + + /// pointer to the function + void *ptr; + +private: + unsigned int func_flags; }; /// function type -- cgit v1.2.3