1
0
mirror of git://projects.qi-hardware.com/nn-usb-fpga.git synced 2025-01-10 04:20:15 +02:00
nn-usb-fpga/lua/examples/lua_calls_C5/liba.h

11 lines
215 B
C
Raw Normal View History

typedef struct tagT{
int a ;
int b ;
}Point;
void lib_a_f_1(void);
int lib_a_f_2(int a, int b);
int lib_a_f_3(const char *s);
int lib_a_f_4(Point *in_t);
int lib_a_f_5(Point *out_t);