]> code.citadel.org Git - citadel.git/blobdiff - webcit/webcit.h
* add a way to pass the workbuffers into the RFC-822 decoder, so we don't need to...
[citadel.git] / webcit / webcit.h
index 054ed3000f78e1744a2dd22bbc557a844c335fb8..c00cf59e1bfa1328aa8a51978dc51bf099fe5bdd 100644 (file)
@@ -555,7 +555,9 @@ struct wcsession {
        long *IBSettingsVec;                    /* which icons should be shown / not shown? */
        const StrBuf *floordiv_expanded;        /* which floordiv currently expanded */
 
-
+/* Transcoding cache buffers; used to avoid to frequent realloc */
+       StrBuf *ConvertBuf1;
+       StrBuf *ConvertBuf2;
 
 /* cache stuff for templates. TODO: find a smartrer way */
        HashList *ServCfg;                      /* cache our server config for editing */
@@ -581,7 +583,6 @@ enum {
        MAX_SEMAPHORES
 };
 
-
 #ifndef num_parms
 #define num_parms(source)              num_tokens(source, '|') 
 #endif
@@ -809,6 +810,7 @@ long guess_calhourformat(void);
 int get_time_format_cached (void);
 const char *get_selected_language(void);
 void display_wiki_pagelist(void);
+HashList *GetRoomListHashLKRA(StrBuf *Target, WCTemplputParams *TP);
 
 #define DATEFMT_FULL 0
 #define DATEFMT_BRIEF 1