CheckSystemTask.h 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*
  2. * CheckTask.h
  3. *
  4. * Created on: 2021年9月2日
  5. * Author: 7564
  6. */
  7. #ifndef CHECKTASK_H_
  8. #define CHECKTASK_H_
  9. #include <sys/timeb.h>
  10. #include <sys/types.h>
  11. #include <sys/ioctl.h>
  12. #include <sys/socket.h>
  13. #include <sys/ipc.h>
  14. #include <sys/shm.h>
  15. #include <sys/mman.h>
  16. #include <linux/wireless.h>
  17. #include <arpa/inet.h>
  18. #include <netinet/in.h>
  19. #include <unistd.h>
  20. #include <stdarg.h>
  21. #include <stdio.h> /*標準輸入輸出定義*/
  22. #include <stdlib.h> /*標準函數庫定義*/
  23. #include <unistd.h> /*Unix 標準函數定義*/
  24. #include <fcntl.h> /*檔控制定義*/
  25. #include <termios.h> /*PPSIX 終端控制定義*/
  26. #include <errno.h> /*錯誤號定義*/
  27. #include <string.h>
  28. #include <stdint.h>
  29. #include <time.h>
  30. #include <ctype.h>
  31. #include <ifaddrs.h>
  32. #include <math.h>
  33. #include <stdbool.h>
  34. #include <dirent.h>
  35. #include "Config.h"
  36. unsigned char CheckSystemTask(unsigned char systemPage);
  37. #endif /* CHECKSYSTEMTASK_H_ */