aboutsummaryrefslogtreecommitdiff
path: root/arken/include/plugin_interface.h
diff options
context:
space:
mode:
Diffstat (limited to 'arken/include/plugin_interface.h')
-rw-r--r--arken/include/plugin_interface.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/arken/include/plugin_interface.h b/arken/include/plugin_interface.h
deleted file mode 100644
index 0583289..0000000
--- a/arken/include/plugin_interface.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef _PLUG_INTF
-#define _PLUG_INTF
-
-#include <stdint.h>
-
-#include "plugin_types.h"
-#include "plugin_exports.h"
-
-#include <wlr/types/wlr_input_device.h>
-#include <wlr/types/wlr_keyboard.h>
-#include <wlr/types/wlr_pointer.h>
-
-/*
- * Plugin ABI: plugins must export these symbols.
- *
- * This header is intended to be included by plugin implementations.
- */
-
-#define DECLARE_PLUGIN_EXPORT(ret, name, args) ret name args;
-MONTIS_PLUGIN_EXPORTS(DECLARE_PLUGIN_EXPORT)
-#undef DECLARE_PLUGIN_EXPORT
-
-#endif /* _PLUG_INTF */