Files
chat_rebot-connect-with-one…/c/tools/quit/quit.h
2026-02-09 09:32:42 +08:00

20 lines
288 B
C
Executable File

#ifndef QUIT_LIB
#define QUIT_LIB
#include "network/network.h"
#include "tem/ctl.h"
#include "tools/log/log.h"
typedef struct all_resources
{
Ctl *tem;
netm *network;
log_manager *loger;
}alres;
void quit_all(int status,void *self_p);
int quit_server(netm *self);
#endif