Fixed bug where Dillo prefs issued warnings on Cancel. Comply a litte better to codin...
[claws.git] / src / plugins / dillo_viewer / dillo_prefs.h
index 5a90a930109748cddc4647a2c12e9d813741553e..b0f082549933e070d252dc580430168aba910ccc 100644 (file)
 
 #include <glib.h>
 
-typedef struct _DilloBrowserPrefs DilloBrowserPrefs_t;
+typedef struct _DilloBrowserPrefs      DilloBrowserPrefs;
 
 struct _DilloBrowserPrefs
 {
-        gboolean        local;   // local browsing
-        gboolean        full;    // use full window
+       gboolean local;   /**< local browsing */
+       gboolean full;    /**< use full window */
 };
 
-extern DilloBrowserPrefs_t dillo_prefs;
+extern DilloBrowserPrefs dillo_prefs;
 
-void dillo_prefs_init();
-void dillo_prefs_done();
+void dillo_prefs_init(void);
+void dillo_prefs_done(void);
 
 #endif