Files
MWClash/core/bride.h

23 lines
688 B
C
Raw Normal View History

#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);