Blame src/internal/ptycon_driver_impl.h

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