summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
Diffstat (limited to 'desktop')
-rw-r--r--desktop/netsurf.h2
-rw-r--r--desktop/version.c3
2 files changed, 4 insertions, 1 deletions
diff --git a/desktop/netsurf.h b/desktop/netsurf.h
index 71422d76e..a1865a604 100644
--- a/desktop/netsurf.h
+++ b/desktop/netsurf.h
@@ -12,6 +12,8 @@
extern bool netsurf_quit;
extern const char * const netsurf_version;
+extern const int netsurf_version_major;
+extern const int netsurf_version_minor;
#endif
diff --git a/desktop/version.c b/desktop/version.c
index 0ba2a66e9..5fc254cd0 100644
--- a/desktop/version.c
+++ b/desktop/version.c
@@ -1,2 +1,3 @@
const char * const netsurf_version = "Development Build";
-
+const int netsurf_version_major = 0;
+const int netsurf_version_minor = 0;