summaryrefslogtreecommitdiffstats
path: root/plugins/check_ide_smart.d/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/check_ide_smart.d/config.h')
-rw-r--r--plugins/check_ide_smart.d/config.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/plugins/check_ide_smart.d/config.h b/plugins/check_ide_smart.d/config.h
new file mode 100644
index 00000000..36899abe
--- /dev/null
+++ b/plugins/check_ide_smart.d/config.h
@@ -0,0 +1,15 @@
1#pragma once
2
3#include "../../config.h"
4#include <stddef.h>
5
6typedef struct {
7 char *device;
8} check_ide_smart_config;
9
10check_ide_smart_config check_ide_smart_init() {
11 check_ide_smart_config tmp = {
12 .device = NULL,
13 };
14 return tmp;
15}