#ifndef PTYCON_DRIVER_IMPL_H #define PTYCON_DRIVER_IMPL_H #include #include #include #include #include #include "argv/argv.h" extern const struct argv_option ptyc_default_options[]; extern const ntapi_vtbl * ptyc_ntapi; extern const ntcon_vtbl * const ptyc_ntcon; #define ntapi ptyc_ntapi #define ntcon ptyc_ntcon enum app_tags { TAG_HELP, TAG_VERSION, }; struct ptyc_driver_ctx_impl { struct ptyc_common_ctx cctx; struct ptyc_driver_ctx ctx; }; #endif