mirror of
https://github.com/estkme-group/lpac
synced 2025-06-29 16:22:57 +02:00
16 lines
255 B
C
16 lines
255 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);
|
|
};
|