summaryrefslogtreecommitdiffhomepage
path: root/src/internal/ptycon_driver_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/internal/ptycon_driver_impl.h')
-rw-r--r--src/internal/ptycon_driver_impl.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/internal/ptycon_driver_impl.h b/src/internal/ptycon_driver_impl.h
new file mode 100644
index 0000000..dbc3278
--- /dev/null
+++ b/src/internal/ptycon_driver_impl.h
@@ -0,0 +1,26 @@
+#ifndef PTYCON_DRIVER_IMPL_H
+#define PTYCON_DRIVER_IMPL_H
+
+#include <ntapi/ntapi.h>
+#include <stdint.h>
+#include <stdio.h>
+
+#include <ptycon/ptycon.h>
+#include "argv/argv.h"
+
+extern const struct argv_option ptyc_default_options[];
+extern const ntapi_vtbl * ptyc_ntapi;
+
+#define ntapi ptyc_ntapi
+
+enum app_tags {
+ TAG_HELP,
+ TAG_VERSION,
+};
+
+struct ptyc_driver_ctx_impl {
+ struct ptyc_common_ctx cctx;
+ struct ptyc_driver_ctx ctx;
+};
+
+#endif