summaryrefslogtreecommitdiffstats
path: root/src/detection/board/board.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/detection/board/board.h')
-rw-r--r--src/detection/board/board.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/detection/board/board.h b/src/detection/board/board.h
new file mode 100644
index 0000000..c092a7f
--- /dev/null
+++ b/src/detection/board/board.h
@@ -0,0 +1,13 @@
+#pragma once
+
+#include "fastfetch.h"
+#include "modules/board/option.h"
+
+typedef struct FFBoardResult {
+ FFstrbuf name;
+ FFstrbuf vendor;
+ FFstrbuf version;
+ FFstrbuf serial;
+} FFBoardResult;
+
+const char* ffDetectBoard(FFBoardResult* board);