Files
chat_rebot-connect-with-one…/c/tools/quit/quit.h
2025-09-29 16:50:51 +08:00

20 lines
288 B
C

#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