replaced glib function calls to g_list_*()
[rocksndiamonds.git] / src / game_bd / bd_caveset.h
index 94ec437862365bdf21a5334ed675c02c837e9baf..f191b17befaeedcc19a59a4d0ac821fb409da41a 100644 (file)
@@ -31,11 +31,11 @@ typedef struct _gd_caveset_data
   GdString www;                 /* link to author's webpage */
   GdString date;                /* date of creation */
 
-  GString *story;               /* story for the caves */
-  GString *remark;              /* notes about the game */
+  char *story;                  /* story for the caves */
+  char *remark;                 /* notes about the game */
     
-  GString *title_screen;        /* base64-encoded title screen image */
-  GString *title_screen_scroll; /* scrolling background for title screen image */
+  char *title_screen;           /* base64-encoded title screen image */
+  char *title_screen_scroll;    /* scrolling background for title screen image */
 
   GdString charset;             /* these are not used by gdash */
   GdString fontset;
@@ -52,7 +52,7 @@ typedef struct _gd_caveset_data
 extern const GdStructDescriptor gd_caveset_properties[];
 
 extern GdCavesetData *gd_caveset_data;
-extern GList *gd_caveset;
+extern List *gd_caveset;
 extern boolean gd_caveset_edited;
 extern int gd_caveset_last_selected;
 extern int gd_caveset_last_selected_level;