chiark / gitweb /
doxygen: add some missing docstrings.
[disorder] / clients / disorder.c
index 6d0a29d971b7290f96ae1887662f10a0ff6b75b7..64694ef836cf7b0f29519756e733902411ed93ad 100644 (file)
@@ -504,9 +504,15 @@ static void cf_setup_guest(char **argv) {
     exit(EXIT_FAILURE);
 }
 
+/** @brief A scheduled event read from the server */
 struct scheduled_event {
+  /** @brief When event should occur */
   time_t when;
+
+  /** @brief Details of action */
   struct kvp *actiondata;
+
+  /** @brief Event ID */
   char *id;
 };