diff --git a/driver.private.h b/driver.private.h deleted file mode 100644 index 4eb5e3f..0000000 --- a/driver.private.h +++ /dev/null @@ -1,16 +0,0 @@ -#pragma once - -enum lpac_driver_type -{ - DRIVER_APDU, - DRIVER_HTTP, -}; - -struct lpac_driver -{ - enum lpac_driver_type type; - const char *name; - int (*init)(void *interface); - int (*main)(int argc, char **argv); - void (*fini)(void); -};