We need to have a definite number for the linenumber enums.
authorWilfried Goesgens <dothebart@citadel.org>
Mon, 22 Dec 2014 18:46:52 +0000 (19:46 +0100)
committerWilfried Goesgens <dothebart@citadel.org>
Mon, 22 Dec 2014 18:46:52 +0000 (19:46 +0100)
libcitadel/lib/libcitadel.h

index 1486916b5c7f582fe2938aa18e0bbfa15afb2210..0ee3df9d98d5e578777bdf1dde1e696505b91205 100644 (file)
@@ -49,16 +49,16 @@ typedef enum AXLevel {
 }eUsrAxlvl;
 
 typedef enum __RoomNetCfg {
 }eUsrAxlvl;
 
 typedef enum __RoomNetCfg {
-       subpending,
-       unsubpending,
-       lastsent, /* Server internal use only */
-       ignet_push_share,
-       listrecp,
-       digestrecp,
-       pop3client,
-       rssclient,
-       participate,
-       roommailalias,
+       subpending        = 0,
+       unsubpending      = 1,
+       lastsent          = 2, /* Server internal use only */
+       ignet_push_share  = 3,
+       listrecp          = 4,
+       digestrecp        = 5,
+       pop3client        = 6,
+       rssclient         = 7,
+       participate       = 8,
+       roommailalias     = 9,
        maxRoomNetCfg
 } RoomNetCfg;
 
        maxRoomNetCfg
 } RoomNetCfg;