summaryrefslogtreecommitdiff
path: root/glob.h
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2013-04-06 13:14:48 +0200
committerPaul Buetow <paul@buetow.org>2013-04-06 13:14:48 +0200
commitd9c4a95345bd758e45196b29368bd2ff0f2790e3 (patch)
tree8e7aa76f3f2a3a064f440f7410e4ec01cd34a78f /glob.h
parentd4c9f10efe815af146438cafb694d16da0e5650a (diff)
tagging ychat-0.5.2ychat-0.5.2
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