summaryrefslogtreecommitdiff
path: root/frontends/windows/gui.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2019-12-10 22:48:42 +0000
committerVincent Sanders <vince@kyllikki.org>2019-12-10 23:12:10 +0000
commit77d184913b64b1613ac70acb23c1230c5ec41e67 (patch)
treecb3c7e023def8a5047bf783c46a09172d460355e /frontends/windows/gui.h
parent56ddeed96c10bae6e67b7e15ee6fa982a0f40b3f (diff)
downloadnetsurf-77d184913b64b1613ac70acb23c1230c5ec41e67.tar.gz
netsurf-77d184913b64b1613ac70acb23c1230c5ec41e67.tar.bz2
rename global resource path variables in win32 frontend
Diffstat (limited to 'frontends/windows/gui.h')
-rw-r--r--frontends/windows/gui.h17
1 files changed, 13 insertions, 4 deletions
diff --git a/frontends/windows/gui.h b/frontends/windows/gui.h
index 8f8f0bcbf..0633c93e8 100644
--- a/frontends/windows/gui.h
+++ b/frontends/windows/gui.h
@@ -22,13 +22,22 @@
struct gui_window;
+/**
+ * win32 application instance handle.
+ *
+ * This handle is set in the main windows entry point.
+ */
extern HINSTANCE hinst;
-/** Directory where all configuration files are held. */
-extern char *nsw32_config_home;
+/**
+ * path to where all user config files are held.
+ */
+extern char *G_config_path;
-/** resource search path vector. */
-extern char **respaths;
+/**
+ * resource search path vector.
+ */
+extern char **G_resource_pathv;
/* bounding box */
typedef struct bbox_s {