mirror of
https://github.com/anyproto/anytype-heart.git
synced 2025-06-08 05:47:07 +09:00
7 lines
207 B
C
7 lines
207 B
C
|
|
typedef void (*proxyFunc) (void* jsFuncData, char* method, char*, int);
|
|
|
|
void ProxyCall(proxyFunc f, void* jsFuncData, char* method, char* data, int data_len)
|
|
{
|
|
f(jsFuncData, method, data, data_len);
|
|
}
|