Support core status check and force restart Optimize proxies page and access page Update flutter and pub dependencies Update go version Optimize more details
23 lines
688 B
C
23 lines
688 B
C
#pragma once
|
|
|
|
#include <stdlib.h>
|
|
|
|
extern void (*release_object_func)(void *obj);
|
|
|
|
extern void (*free_string_func)(char *data);
|
|
|
|
extern void (*protect_func)(void *tun_interface, int fd);
|
|
|
|
extern char* (*resolve_process_func)(void *tun_interface, int protocol, const char *source, const char *target, int uid);
|
|
|
|
extern void (*result_func)(void *invoke_Interface, const char *data);
|
|
|
|
extern void protect(void *tun_interface, int fd);
|
|
|
|
extern char* resolve_process(void *tun_interface, int protocol, const char *source, const char *target, int uid);
|
|
|
|
extern void release_object(void *obj);
|
|
|
|
extern void free_string(char *data);
|
|
|
|
extern void result(void *invoke_Interface, const char *data); |