Blame src/internal/ntux_driver_impl.h

26e14f
#ifndef NTUX_DRIVER_IMPL_H
26e14f
#define NTUX_DRIVER_IMPL_H
26e14f
26e14f
#include <ntapi/ntapi.h>
26e14f
#include <psxscl/psxscl.h>
26e14f
#include <stdint.h>
26e14f
#include <stdio.h>
26e14f
26e14f
#include <ntux/ntux.h>
26e14f
#include "argv/argv.h"
26e14f
26e14f
extern   const struct argv_option ntux_default_options[];
26e14f
extern   const ntapi_vtbl * ntux_ntapi;
26e14f
26e14f
#define  ntapi ntux_ntapi
26e14f
26e14f
enum app_tags {
26e14f
	TAG_HELP,
26e14f
	TAG_VERSION,
26e14f
};
26e14f
26e14f
struct ntux_driver_ctx_impl {
26e14f
	struct ntux_common_ctx      cctx;
26e14f
	struct ntux_driver_ctx      ctx;
26e14f
	struct __psx_context        xctx;
26e14f
	const char *                eunit;
26e14f
	struct ntux_error_info **   errinfp;
26e14f
	struct ntux_error_info **   erricap;
26e14f
	struct ntux_error_info *    erriptr[64];
26e14f
	struct ntux_error_info      erribuf[64];
26e14f
};
26e14f
26e14f
#endif