Files
MWClash/core/bride.h
chen08209 a1edaba5c9 Add android separates the core process
Support core status check and force restart

Update flutter and pub dependencies
2025-08-27 19:13:43 +08:00

19 lines
604 B
C

#pragma once
#include <stdlib.h>
extern void (*release_object_func)(void *obj);
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 result(void *invoke_Interface, const char *data);