Files
chat_rebot-connect-with-one…/c/tools/quit/quit.h

23 lines
339 B
C
Executable File

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