]> code.citadel.org Git - citadel.git/blobdiff - citadel/include/ctdl_module.h
Removed the artv_*.h files, they arent used any more.
[citadel.git] / citadel / include / ctdl_module.h
index cba6917149cc81334444bea9abcc959f8cc0c837..bbd6718de3540b61331434239f3894b8cb0a2848 100644 (file)
 
 void CtdlLogPrintf(enum LogLevel loglevel, const char *format, ...);
 
-/*
- * Fix the interface to aide_message so that it complies with the Coding style
- */
-#define CtdlAideMessage(TEXT, SUBJECT) aide_message(TEXT, SUBJECT)
+#define CtdlAideMessage(TEXT, SUBJECT) quickie_message("Citadel",NULL,NULL,AIDEROOM,TEXT,FMT_CITADEL,SUBJECT) 
 
 /*
  * Hook functions available to modules.
@@ -207,4 +203,20 @@ enum {
        crr_access_denied               /* not allowed to edit this room */
 };
 
+
+
+/*
+ * API declarations from citserver.h
+ */
+int CtdlAccessCheck(int);
+/* 'required access level' values which may be passed to CtdlAccessCheck()
+ */
+enum {
+       ac_none,
+       ac_logged_in,
+       ac_room_aide,
+       ac_aide,
+       ac_internal
+};
+
 #endif /* CTDL_MODULE_H */