#ifndef APIMAGIC_DRIVER_IMPL_H #define APIMAGIC_DRIVER_IMPL_H #include #include #include #include enum app_tags { TAG_HELP, TAG_VERSION, }; struct amgc_driver_ctx_impl { struct amgc_common_ctx cctx; struct amgc_driver_ctx ctx; }; struct amgc_unit_ctx_impl { const char * path; struct amgc_input map; struct amgc_common_ctx cctx; struct amgc_unit_ctx uctx; }; #endif