aboutsummaryrefslogtreecommitdiff
path: root/src/resource.h
diff options
context:
space:
mode:
authorDien-Nhung Nguyen-Phu <kein@kienlab.com>2024-06-09 12:59:34 +0700
committerDien-Nhung Nguyen-Phu <kein@kienlab.com>2024-06-10 12:34:37 +0700
commit8815700322c0c10cb0528b047b2c7604c2eeb053 (patch)
treef1ba04d1c18ac01cb671618309f015599e9da782 /src/resource.h
parentf6d84a1ead1a57574c45bb80b6fd450c5b784e09 (diff)
Add support for .xbm bitmap file
.xbm is easy to include in C as source file. It could be viewed and edited directly without need to be converted between images and C array.
Diffstat (limited to 'src/resource.h')
-rw-r--r--src/resource.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/resource.h b/src/resource.h
new file mode 100644
index 0000000..df91e37
--- /dev/null
+++ b/src/resource.h
@@ -0,0 +1,10 @@
+#ifndef __RES_H__
+#define __RES_H__
+
+#include <stdint.h>
+#include "xbm.h"
+
+extern xbm_t bluetooth;
+extern xbm_t splash;
+
+#endif /* __RES_H__ */