summaryrefslogtreecommitdiff
path: root/glob.h
diff options
context:
space:
mode:
Diffstat (limited to 'glob.h')
-rw-r--r--[-rwxr-xr-x]glob.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/glob.h b/glob.h
index 6f89ef1..9287c38 100755..100644
--- a/glob.h
+++ b/glob.h
@@ -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