]> code.citadel.org Git - citadel.git/blobdiff - webcit/webcit.h
* harmonize svput actions to be clean and use strbuf() as char* storage.
[citadel.git] / webcit / webcit.h
index 9d490779f1a94520b57b700bd50c704a3f87c35f..aa9e11b549dc3620c2dc7c7abb030ba209410dce 100644 (file)
@@ -265,9 +265,9 @@ struct roomlisting {
  * \brief Dynamic content for variable substitution in templates
  */
 typedef struct _wcsubst {
-       int wcs_type;                       /**< which type of ??? */
-       char wcs_key[32];                   /**< ??? what?*/
-       void *wcs_value;                    /**< ???? what?*/
+       int wcs_type;                       /**< which type of Substitution are we */
+       char wcs_key[32];                   /**< copy of our hashkey for debugging */
+       StrBuf *wcs_value;                  /**< if we're a string, keep it here */
        long lvalue;                        /**< type long? keep data here */
        void (*wcs_function)(void); /**< funcion hook ???*/
 } wcsubst;