From 0efa8cf1d20712cbfaa549d31a8ebc11a23f78ec Mon Sep 17 00:00:00 2001 From: midipix Date: Mon, 4 Jul 2016 00:50:42 -0400 Subject: created free-standing project skeleton. --- src/internal/ptycon_driver_impl.h | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/internal/ptycon_driver_impl.h (limited to 'src/internal/ptycon_driver_impl.h') 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 +#include +#include + +#include +#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 -- cgit v1.2.3