20 lines
288 B
C
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 |