diff options
Diffstat (limited to 'glob.h')
| -rw-r--r--[-rwxr-xr-x] | glob.h | 28 |
1 files changed, 14 insertions, 14 deletions
@@ -21,7 +21,7 @@ // max length of a line read from a socket or a file ( config-file, html-template ). #define READBUF 1024 -// definition for verbosity level 0 ( normal outputs ). see vmsg.h for custumizing all +// definition for verbosity level 0 ( normal outputs ). see vmsg.h for custumizing all // the messages. this messages will only printed out by the master thread. #define VERBOSE @@ -39,16 +39,16 @@ using namespace std; // internal rang descriptors ( their external names may be specified different ) enum rang -{ - CODER , // programmer. - ADMIN , // administrator. - MAGIC , // super user with special privileges. - SUPER , // temporary super user. - BASIC , // normal user without special privileges. - GUEST , // guest user, has almost no privileges. - RESTR , // a very restrivted user. - OUTBN // banned out of the system. -}; +{ + CODER , // programmer. + ADMIN , // administrator. + MAGIC , // super user with special privileges. + SUPER , // temporary super user. + BASIC , // normal user without special privileges. + GUEST , // guest user, has almost no privileges. + RESTR , // a very restrivted user. + OUTBN // banned out of the system. +}; // some custom typedefs for datatypes which are needed often. typedef map<string, string> map_string; @@ -56,13 +56,13 @@ typedef int function( void *v_arg ); struct container { - void* elem[3]; + void* elem[3]; }; struct dynmod { - function *the_func ; - void *the_module; + function *the_func ; + void *the_module; }; #endif |
