From 479444a40e1a2186b04109844d21861a802b6f05 Mon Sep 17 00:00:00 2001 From: Jacob Ledbetter Date: Tue, 14 Jul 2026 20:41:04 -0600 Subject: [PATCH] refactor(WWLib): Qualify library and download header includes --- Core/Libraries/Source/WWVegas/WWDownload/Download.cpp | 2 +- Core/Libraries/Source/WWVegas/WWDownload/FTP.cpp | 2 +- Core/Libraries/Source/WWVegas/WWDownload/registry.cpp | 2 +- Core/Libraries/Source/WWVegas/WWLib/Except.cpp | 4 ++-- Core/Libraries/Source/WWVegas/WWLib/bufffile.cpp | 2 +- Core/Libraries/Source/WWVegas/WWLib/cpudetect.cpp | 2 +- Core/Libraries/Source/WWVegas/WWLib/hash.cpp | 2 +- Core/Libraries/Source/WWVegas/WWLib/lzo.cpp | 2 +- Core/Libraries/Source/WWVegas/WWLib/lzo1x_c.cpp | 2 +- Core/Libraries/Source/WWVegas/WWLib/multilist.cpp | 2 +- Core/Libraries/Source/WWVegas/WWLib/mutex.cpp | 2 +- Core/Libraries/Source/WWVegas/WWLib/tgatodxt.cpp | 2 +- Core/Libraries/Source/WWVegas/WWLib/thread.cpp | 2 +- Core/Libraries/Source/WWVegas/WWLib/wwstring.cpp | 2 +- 14 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Core/Libraries/Source/WWVegas/WWDownload/Download.cpp b/Core/Libraries/Source/WWVegas/WWDownload/Download.cpp index 10d874a324a..f5951abe089 100644 --- a/Core/Libraries/Source/WWVegas/WWDownload/Download.cpp +++ b/Core/Libraries/Source/WWVegas/WWDownload/Download.cpp @@ -19,7 +19,7 @@ // Download.cpp : Implementation of CDownload #include "DownloadDebug.h" #include "Download.h" -#include "stringex.h" +#include "WWLib/stringex.h" #include #include #include diff --git a/Core/Libraries/Source/WWVegas/WWDownload/FTP.cpp b/Core/Libraries/Source/WWVegas/WWDownload/FTP.cpp index b41b2581048..9d174a28dd2 100644 --- a/Core/Libraries/Source/WWVegas/WWDownload/FTP.cpp +++ b/Core/Libraries/Source/WWVegas/WWDownload/FTP.cpp @@ -35,7 +35,7 @@ #include #include #include -#include +#include //#include "wlib/wstring.h" #include "DownloadDebug.h" diff --git a/Core/Libraries/Source/WWVegas/WWDownload/registry.cpp b/Core/Libraries/Source/WWVegas/WWDownload/registry.cpp index a54d41bc3bf..4d63c0f1017 100644 --- a/Core/Libraries/Source/WWVegas/WWDownload/registry.cpp +++ b/Core/Libraries/Source/WWVegas/WWDownload/registry.cpp @@ -22,7 +22,7 @@ #include "Registry.h" #include -#include "win.h" +#include "WWLib/win.h" bool getStringFromRegistry(HKEY root, std::string path, std::string key, std::string& val) { diff --git a/Core/Libraries/Source/WWVegas/WWLib/Except.cpp b/Core/Libraries/Source/WWVegas/WWLib/Except.cpp index 35ecf90120b..be9c958cdf1 100644 --- a/Core/Libraries/Source/WWVegas/WWLib/Except.cpp +++ b/Core/Libraries/Source/WWVegas/WWLib/Except.cpp @@ -58,8 +58,8 @@ #include "MPU.h" //#include "commando\nat.h" #include "thread.h" -#include "wwdebug.h" -#include "wwmemlog.h" +#include "WWDebug/wwdebug.h" +#include "WWDebug/wwmemlog.h" #include #include diff --git a/Core/Libraries/Source/WWVegas/WWLib/bufffile.cpp b/Core/Libraries/Source/WWVegas/WWLib/bufffile.cpp index 9eef7f586ea..d4128f6ecd6 100644 --- a/Core/Libraries/Source/WWVegas/WWLib/bufffile.cpp +++ b/Core/Libraries/Source/WWVegas/WWLib/bufffile.cpp @@ -36,7 +36,7 @@ #include "always.h" #include "bufffile.h" -#include "wwdebug.h" +#include "WWDebug/wwdebug.h" int BufferedFileClass::_DesiredBufferSize = 1024*16; diff --git a/Core/Libraries/Source/WWVegas/WWLib/cpudetect.cpp b/Core/Libraries/Source/WWVegas/WWLib/cpudetect.cpp index 31d6c02d2ba..c01e7f75254 100644 --- a/Core/Libraries/Source/WWVegas/WWLib/cpudetect.cpp +++ b/Core/Libraries/Source/WWVegas/WWLib/cpudetect.cpp @@ -18,7 +18,7 @@ #include "cpudetect.h" #include "wwstring.h" -#include "wwdebug.h" +#include "WWDebug/wwdebug.h" #include "thread.h" #pragma warning (disable : 4201) // Nonstandard extension - nameless struct #include "systimer.h" diff --git a/Core/Libraries/Source/WWVegas/WWLib/hash.cpp b/Core/Libraries/Source/WWVegas/WWLib/hash.cpp index 5309e410135..b7969f68cf4 100644 --- a/Core/Libraries/Source/WWVegas/WWLib/hash.cpp +++ b/Core/Libraries/Source/WWVegas/WWLib/hash.cpp @@ -36,7 +36,7 @@ * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */ #include "hash.h" -#include "wwdebug.h" +#include "WWDebug/wwdebug.h" #include "realcrc.h" /* diff --git a/Core/Libraries/Source/WWVegas/WWLib/lzo.cpp b/Core/Libraries/Source/WWVegas/WWLib/lzo.cpp index ba763b35e41..e37a94ace78 100644 --- a/Core/Libraries/Source/WWVegas/WWLib/lzo.cpp +++ b/Core/Libraries/Source/WWVegas/WWLib/lzo.cpp @@ -38,7 +38,7 @@ #include "lzo.h" #include "mutex.h" -#include "wwdebug.h" +#include "WWDebug/wwdebug.h" #include /* diff --git a/Core/Libraries/Source/WWVegas/WWLib/lzo1x_c.cpp b/Core/Libraries/Source/WWVegas/WWLib/lzo1x_c.cpp index eee7ebdc1cf..3e1085495db 100644 --- a/Core/Libraries/Source/WWVegas/WWLib/lzo1x_c.cpp +++ b/Core/Libraries/Source/WWVegas/WWLib/lzo1x_c.cpp @@ -63,7 +63,7 @@ #include "always.h" #include "lzo1x.h" #include "lzo_conf.h" -#include "wwdebug.h" +#include "WWDebug/wwdebug.h" #include #if !defined(LZO1X) && !defined(LZO1Y) diff --git a/Core/Libraries/Source/WWVegas/WWLib/multilist.cpp b/Core/Libraries/Source/WWVegas/WWLib/multilist.cpp index 771623cbf5f..f3464fb7d2e 100644 --- a/Core/Libraries/Source/WWVegas/WWLib/multilist.cpp +++ b/Core/Libraries/Source/WWVegas/WWLib/multilist.cpp @@ -37,7 +37,7 @@ * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */ #include "multilist.h" -#include "wwmemlog.h" +#include "WWDebug/wwmemlog.h" /* ** Declare the pool for ListNodes diff --git a/Core/Libraries/Source/WWVegas/WWLib/mutex.cpp b/Core/Libraries/Source/WWVegas/WWLib/mutex.cpp index 765b1857083..2bd2624e172 100644 --- a/Core/Libraries/Source/WWVegas/WWLib/mutex.cpp +++ b/Core/Libraries/Source/WWVegas/WWLib/mutex.cpp @@ -17,7 +17,7 @@ */ #include "mutex.h" -#include "wwdebug.h" +#include "WWDebug/wwdebug.h" #ifdef _WIN32 #include #endif diff --git a/Core/Libraries/Source/WWVegas/WWLib/tgatodxt.cpp b/Core/Libraries/Source/WWVegas/WWLib/tgatodxt.cpp index 334fe55fc59..29b6da7d3be 100644 --- a/Core/Libraries/Source/WWVegas/WWLib/tgatodxt.cpp +++ b/Core/Libraries/Source/WWVegas/WWLib/tgatodxt.cpp @@ -41,7 +41,7 @@ #include "nvdxtlib.h" #include "TARGA.h" #include "tgatodxt.h" -#include "wwdebug.h" +#include "WWDebug/wwdebug.h" #include #include diff --git a/Core/Libraries/Source/WWVegas/WWLib/thread.cpp b/Core/Libraries/Source/WWVegas/WWLib/thread.cpp index f523e894c20..076f854262f 100644 --- a/Core/Libraries/Source/WWVegas/WWLib/thread.cpp +++ b/Core/Libraries/Source/WWVegas/WWLib/thread.cpp @@ -19,7 +19,7 @@ #include "thread.h" #include "Except.h" -#include "wwdebug.h" +#include "WWDebug/wwdebug.h" #pragma warning ( push ) #pragma warning ( disable : 4201 ) #include "systimer.h" diff --git a/Core/Libraries/Source/WWVegas/WWLib/wwstring.cpp b/Core/Libraries/Source/WWVegas/WWLib/wwstring.cpp index c2e80ec8443..c63bac45575 100644 --- a/Core/Libraries/Source/WWVegas/WWLib/wwstring.cpp +++ b/Core/Libraries/Source/WWVegas/WWLib/wwstring.cpp @@ -35,7 +35,7 @@ * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */ #include "wwstring.h" -#include "wwmemlog.h" +#include "WWDebug/wwmemlog.h" #include "mutex.h"