I
ilikejunk1230
Hi,
I'm trying to call a C function whose header file looks like this:
int func(AB *foo, CD callback_function, EF *callback_client);
and the only declarations are
typedef struct AB AB;
typedef struct EF EF;
typedef int (*CD)(EF *client, int bar);
how would I import that into C#?
Thanks in advance
I'm trying to call a C function whose header file looks like this:
int func(AB *foo, CD callback_function, EF *callback_client);
and the only declarations are
typedef struct AB AB;
typedef struct EF EF;
typedef int (*CD)(EF *client, int bar);
how would I import that into C#?
Thanks in advance