9 lines
203 B
C
9 lines
203 B
C
#ifndef FORMULAS_H
|
|
#define FORMULAS_H
|
|
|
|
typedef struct import_formula_t {
|
|
int (*callfunc)(uint32_t, uint32_t, uint32_t*);//pdata, return id, array of args id
|
|
char* name;
|
|
}import_formula_t;
|
|
|
|
#endif |