// // Created by xemon on 30.11.22. // #ifndef UVEOS_ON_NATION_ERAGLONASSUVEOS_DUMPER_H #define UVEOS_ON_NATION_ERAGLONASSUVEOS_DUMPER_H typedef void (*eraGlonassForceDumpCall)(void *env); typedef struct { void *env; eraGlonassForceDumpCall forceDump; } tEraGlonassUveosDumperInterface; #define EraGlonassUveosDumper_ForceDump(ENV) (ENV)->forceDump((ENV)->env) #endif //UVEOS_ON_NATION_ERAGLONASSUVEOS_DUMPER_H