aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/installer/fetcher/systeminfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'installer/fetcher/systeminfo.h')
-rw-r--r--installer/fetcher/systeminfo.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/installer/fetcher/systeminfo.h b/installer/fetcher/systeminfo.h
new file mode 100644
index 00000000..2c06a166
--- /dev/null
+++ b/installer/fetcher/systeminfo.h
@@ -0,0 +1,16 @@
+/* SPDX-License-Identifier: GPL-2.0
+ *
+ * Copyright (C) 2020-2022 Jason A. Donenfeld. All Rights Reserved.
+ */
+
+#ifndef _SYSTEMINFO_H
+#define _SYSTEMINFO_H
+
+#include <stdbool.h>
+
+const char *architecture(void);
+const char *useragent(void);
+bool is_win7(void);
+bool is_win8dotzero_or_below(void);
+
+#endif