aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Build/DMBS/Template/lib/TEMPLATE_LIB/include
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2017-12-31 17:24:46 +1100
committerDean Camera <dean@fourwalledcubicle.com>2017-12-31 17:24:46 +1100
commit4145d6bec052608b0b023cb85f2f7f9e51521482 (patch)
treef32df80cce733a7e9f8795881eb3f4a12736f790 /LUFA/Build/DMBS/Template/lib/TEMPLATE_LIB/include
parentb5c251a7d7a3801a009518365f3d0fd5043dbc5f (diff)
downloadlufa-4145d6bec052608b0b023cb85f2f7f9e51521482.tar.gz
lufa-4145d6bec052608b0b023cb85f2f7f9e51521482.tar.bz2
lufa-4145d6bec052608b0b023cb85f2f7f9e51521482.zip
Update DMBS to the latest version.
Diffstat (limited to 'LUFA/Build/DMBS/Template/lib/TEMPLATE_LIB/include')
-rw-r--r--LUFA/Build/DMBS/Template/lib/TEMPLATE_LIB/include/template_lib.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/LUFA/Build/DMBS/Template/lib/TEMPLATE_LIB/include/template_lib.h b/LUFA/Build/DMBS/Template/lib/TEMPLATE_LIB/include/template_lib.h
new file mode 100644
index 000000000..1baa6357e
--- /dev/null
+++ b/LUFA/Build/DMBS/Template/lib/TEMPLATE_LIB/include/template_lib.h
@@ -0,0 +1,24 @@
+/*
+ DMBS Build System
+ Released into the public domain.
+
+ dean [at] fourwalledcubicle [dot] com
+ www.fourwalledcubicle.com
+ */
+
+// Include Guard
+#pragma once
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+// Software version
+#define TEMPLATE_LIB_VERSION 100
+
+#include <stdint.h>
+#include <stddef.h>
+
+#ifdef __cplusplus
+}
+#endif