15 lines
290 B
C
15 lines
290 B
C
#ifndef FORMATS_H
|
|
#define FORMATS_H
|
|
|
|
#include "table_lib.h"
|
|
|
|
typedef struct import_format_t {
|
|
int (*load)(uint32_t, char*, table_dom_t**, char*);
|
|
int (*save)(uint32_t, char*, table_dom_t**, char*);// pdata, path, table_dom, params
|
|
void* assoc;
|
|
char* params;
|
|
} import_format_t;
|
|
|
|
|
|
|
|
#endif |