files
Table/includes/formats.h
Mikhail Frolov b3981d174a Table: All editor code files have been added from the flash drive.
The start date of development is September 12, 2024.
2025-03-30 22:56:32 +05:00

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