mirror of
https://github.com/estkme-group/lpac
synced 2025-08-18 10:03:02 +02:00
14 lines
266 B
C
14 lines
266 B
C
#pragma once
|
|
|
|
enum euicc_driver_type {
|
|
DRIVER_APDU,
|
|
DRIVER_HTTP,
|
|
};
|
|
|
|
struct euicc_driver {
|
|
enum euicc_driver_type type;
|
|
const char *name;
|
|
int (*init)(void *interface);
|
|
int (*main)(int argc, char **argv);
|
|
void (*fini)(void *interface);
|
|
};
|