code_app/modules/base/HGInc.h

38 lines
688 B
C
Raw Normal View History

2022-05-03 10:25:52 +00:00
#ifndef __HGINC_H__
#define __HGINC_H__
#include <stddef.h>
#include <stdint.h>
#include <assert.h>
#include <stdlib.h>
#include <stdio.h>
#include <sys/timeb.h>
#include <time.h>
#include <string.h>
#include <math.h>
#include <setjmp.h>
#include <malloc.h>
#include <stdarg.h>
#include <ctype.h>
2022-05-03 10:25:52 +00:00
#if defined(HG_CMP_MSC)
#include <windows.h>
#include <WinSock2.h>
#else
#include <sys/time.h>
#include <errno.h>
#include <pthread.h>
#include <unistd.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/syscall.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <dlfcn.h>
#include <iconv.h>
#include <sys/ioctl.h>
#include <dirent.h>
2022-05-03 10:25:52 +00:00
#endif
#endif /* __HGINC_H__ */