summaryrefslogtreecommitdiffhomepage
path: root/src/internal/mdso_driver_impl.h
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2015-12-17 04:11:07 -0500
committermidipix <writeonce@midipix.org>2016-11-11 00:22:28 -0500
commitcde03b7121400bd61167e8db5303b3cd0ff03a0c (patch)
tree58a4ff993fefddf8d963f6a3dd5d1ae6760e2df9 /src/internal/mdso_driver_impl.h
parent08279ea75fe76bdccb9809030ed3e5b261c9d557 (diff)
downloadmdso-cde03b7121400bd61167e8db5303b3cd0ff03a0c.tar.bz2
mdso-cde03b7121400bd61167e8db5303b3cd0ff03a0c.tar.xz
created skeleton.
Diffstat (limited to 'src/internal/mdso_driver_impl.h')
-rw-r--r--src/internal/mdso_driver_impl.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/internal/mdso_driver_impl.h b/src/internal/mdso_driver_impl.h
new file mode 100644
index 0000000..2c4554f
--- /dev/null
+++ b/src/internal/mdso_driver_impl.h
@@ -0,0 +1,27 @@
+#ifndef MDSO_DRIVER_IMPL_H
+#define MDSO_DRIVER_IMPL_H
+
+#include <stdint.h>
+#include <stdio.h>
+#include <sys/types.h>
+
+#include <mdso/mdso.h>
+
+enum app_tags {
+ TAG_HELP,
+ TAG_VERSION,
+};
+
+struct mdso_driver_ctx_impl {
+ struct mdso_common_ctx cctx;
+ struct mdso_driver_ctx ctx;
+};
+
+struct mdso_unit_ctx_impl {
+ const char * path;
+ struct mdso_input map;
+ struct mdso_common_ctx cctx;
+ struct mdso_unit_ctx uctx;
+};
+
+#endif