chore: clean up old includes

caused compile issues on latest tools - the curl include is old and the wut headers added C++ templates
This commit is contained in:
Ash Logan 2024-08-03 21:46:46 +10:00
commit 734e5d40c9
2 changed files with 4 additions and 5 deletions

View file

@ -44,7 +44,6 @@
#include <nn/erreula/erreula_cpp.h>
#include <nn/act/client_cpp.h>
#include <curl/curl.h>
#include "ca_pem.h"
#include <gx2/surface.h>

View file

@ -1,15 +1,15 @@
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#include <string.h>
#include <whb/log.h>
#include <whb/log_module.h>
#include <whb/log_cafe.h>
#include <whb/log_udp.h>
#ifdef __cplusplus
extern "C" {
#endif
#define __FILENAME_X__ (strrchr(__FILE__, '\\') ? strrchr(__FILE__, '\\') + 1 : __FILE__)
#define __FILENAME__ (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILENAME_X__)