Blame src/internal/apimagic_driver_impl.h

383aa6
#ifndef APIMAGIC_DRIVER_IMPL_H
383aa6
#define APIMAGIC_DRIVER_IMPL_H
383aa6
383aa6
#include <stdint.h>
383aa6
#include <stdio.h>
383aa6
#include <sys/types.h>
383aa6
383aa6
#include <apimagic/apimagic.h>
383aa6
383aa6
enum app_tags {
383aa6
	TAG_HELP,
383aa6
	TAG_VERSION,
383aa6
};
383aa6
383aa6
struct amgc_driver_ctx_impl {
383aa6
	struct amgc_common_ctx	cctx;
383aa6
	struct amgc_driver_ctx	ctx;
383aa6
};
383aa6
383aa6
struct amgc_unit_ctx_impl {
383aa6
	const char *		path;
383aa6
	struct amgc_input	map;
383aa6
	struct amgc_common_ctx	cctx;
383aa6
	struct amgc_unit_ctx	uctx;
383aa6
};
383aa6
383aa6
#endif