Blame src/internal/sofort_driver_impl.h

f46039
#ifndef SFRT_DRIVER_IMPL_H
f46039
#define SFRT_DRIVER_IMPL_H
f46039
f46039
#include <stdint.h>
f46039
#include <stdio.h>
f46039
#include <sys/types.h>
f46039
f46039
#include <sofort/sofort.h>
f46039
f46039
enum app_tags {
f46039
	TAG_HELP,
f46039
	TAG_VERSION,
bbc20f
	TAG_OUTPUT_DUMMY,	/* dummy */
bbc20f
	TAG_OUTPUT_PROPERTY,	/* dummy */
f46039
};
f46039
f46039
struct sfrt_driver_ctx_impl {
f46039
	struct sfrt_common_ctx	cctx;
f46039
	struct sfrt_driver_ctx	ctx;
f46039
};
f46039
f46039
struct sfrt_unit_ctx_impl {
f46039
	const char *		path;
f46039
	struct sfrt_input	map;
f46039
	struct sfrt_common_ctx	cctx;
f46039
	struct sfrt_unit_ctx	uctx;
f46039
};
f46039
f46039
#endif