2020-10-08 15:31:09 -03:00
|
|
|
/*
|
2021-06-07 23:13:45 -04:00
|
|
|
* nxdt_includes.h
|
2020-10-08 15:31:09 -03:00
|
|
|
*
|
2024-04-12 05:47:36 -04:00
|
|
|
* Copyright (c) 2020-2024, DarkMatterCore <pabloacurielz@gmail.com>.
|
2020-10-08 15:31:09 -03:00
|
|
|
*
|
|
|
|
* This file is part of nxdumptool (https://github.com/DarkMatterCore/nxdumptool).
|
|
|
|
*
|
2021-03-25 16:26:58 -03:00
|
|
|
* nxdumptool is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2020-10-08 15:31:09 -03:00
|
|
|
*
|
2021-03-25 16:26:58 -03:00
|
|
|
* nxdumptool is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2020-10-08 15:31:09 -03:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2021-03-25 16:26:58 -03:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2020-10-08 15:31:09 -03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-06-07 23:13:45 -04:00
|
|
|
#ifndef __NXDT_INCLUDES_H__
|
|
|
|
#define __NXDT_INCLUDES_H__
|
2020-10-08 15:31:09 -03:00
|
|
|
|
2021-06-07 23:13:45 -04:00
|
|
|
/* C headers. */
|
2021-03-07 20:22:49 -03:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <malloc.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <sys/stat.h>
|
2022-07-14 08:10:03 -04:00
|
|
|
#include <sys/param.h>
|
2023-12-20 16:32:48 -03:00
|
|
|
#include <fcntl.h>
|
2023-05-24 15:05:34 -04:00
|
|
|
#include <dirent.h>
|
2021-03-07 20:22:49 -03:00
|
|
|
#include <assert.h>
|
2021-03-30 16:30:10 -03:00
|
|
|
#include <unistd.h>
|
2021-03-07 20:22:49 -03:00
|
|
|
|
2021-03-24 14:25:19 -03:00
|
|
|
#ifndef __cplusplus
|
|
|
|
#include <stdatomic.h>
|
|
|
|
#else
|
|
|
|
#include <atomic>
|
|
|
|
#define _Atomic(X) std::atomic< X >
|
|
|
|
#endif
|
|
|
|
|
2021-06-07 23:13:45 -04:00
|
|
|
/* libnx header. */
|
|
|
|
#include <switch.h>
|
2021-03-07 20:22:49 -03:00
|
|
|
|
2022-07-11 20:27:03 -04:00
|
|
|
/* Internet operations. */
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
|
2021-06-07 23:13:45 -04:00
|
|
|
/* Global defines. */
|
|
|
|
#include "../defines.h"
|
2020-10-22 01:38:14 -03:00
|
|
|
|
2022-07-11 21:31:39 -04:00
|
|
|
/* File/socket based logger. */
|
2021-06-07 23:13:45 -04:00
|
|
|
#include "nxdt_log.h"
|
2020-10-12 23:46:59 -03:00
|
|
|
|
2021-07-21 11:04:18 -04:00
|
|
|
/* Configuration handler. */
|
|
|
|
#include "config.h"
|
|
|
|
|
2021-07-25 01:37:13 -04:00
|
|
|
/* HTTP requests handler. */
|
|
|
|
#include "http.h"
|
|
|
|
|
2021-06-07 23:13:45 -04:00
|
|
|
/* USB Mass Storage support. */
|
|
|
|
#include "ums.h"
|
2021-03-24 14:25:19 -03:00
|
|
|
|
2022-06-25 15:28:31 -04:00
|
|
|
/* SHA3 checksum calculator. */
|
|
|
|
#include "sha3.h"
|
|
|
|
|
2022-07-03 14:32:35 -04:00
|
|
|
/* LZ4 (dec)compression. */
|
|
|
|
#define LZ4_STATIC_LINKING_ONLY /* Required by LZ4 to enable in-place decompression. */
|
|
|
|
#include "lz4.h"
|
|
|
|
|
2024-04-30 17:01:42 -04:00
|
|
|
/* Horizon OS version structs. */
|
|
|
|
#include "hos_version_structs.h"
|
2023-05-24 15:05:34 -04:00
|
|
|
|
2021-06-07 23:13:45 -04:00
|
|
|
#endif /* __NXDT_INCLUDES_H__ */
|