mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
rename Common/File to Common/IOFile
This commit is contained in:
@ -43,8 +43,6 @@ add_library(common
|
||||
ENetUtil.cpp
|
||||
ENetUtil.h
|
||||
Event.h
|
||||
File.cpp
|
||||
File.h
|
||||
FileSearch.cpp
|
||||
FileSearch.h
|
||||
FileUtil.cpp
|
||||
@ -66,6 +64,8 @@ add_library(common
|
||||
IniFile.cpp
|
||||
IniFile.h
|
||||
Inline.h
|
||||
IOFile.cpp
|
||||
IOFile.h
|
||||
JitRegister.cpp
|
||||
JitRegister.h
|
||||
Lazy.h
|
||||
@ -106,10 +106,10 @@ add_library(common
|
||||
SDCardUtil.cpp
|
||||
SDCardUtil.h
|
||||
Semaphore.h
|
||||
SFMLHelper.cpp
|
||||
SFMLHelper.h
|
||||
SettingsHandler.cpp
|
||||
SettingsHandler.h
|
||||
SFMLHelper.cpp
|
||||
SFMLHelper.h
|
||||
SPSCQueue.h
|
||||
StringUtil.cpp
|
||||
StringUtil.h
|
||||
|
@ -53,7 +53,6 @@
|
||||
<ClInclude Include="DynamicLibrary.h" />
|
||||
<ClInclude Include="ENetUtil.h" />
|
||||
<ClInclude Include="Event.h" />
|
||||
<ClInclude Include="File.h" />
|
||||
<ClInclude Include="FileSearch.h" />
|
||||
<ClInclude Include="FileUtil.h" />
|
||||
<ClInclude Include="FixedSizeQueue.h" />
|
||||
@ -124,6 +123,7 @@
|
||||
<ClInclude Include="HttpRequest.h" />
|
||||
<ClInclude Include="Image.h" />
|
||||
<ClInclude Include="IniFile.h" />
|
||||
<ClInclude Include="IOFile.h" />
|
||||
<ClInclude Include="JitRegister.h" />
|
||||
<ClInclude Include="Lazy.h" />
|
||||
<ClInclude Include="LdrWatcher.h" />
|
||||
@ -194,7 +194,6 @@
|
||||
<ClCompile Include="Debug\Watches.cpp" />
|
||||
<ClCompile Include="DynamicLibrary.cpp" />
|
||||
<ClCompile Include="ENetUtil.cpp" />
|
||||
<ClCompile Include="File.cpp" />
|
||||
<ClCompile Include="FileSearch.cpp" />
|
||||
<ClCompile Include="FileUtil.cpp" />
|
||||
<ClCompile Include="FloatUtils.cpp" />
|
||||
@ -216,6 +215,7 @@
|
||||
<ClCompile Include="HttpRequest.cpp" />
|
||||
<ClCompile Include="Image.cpp" />
|
||||
<ClCompile Include="IniFile.cpp" />
|
||||
<ClCompile Include="IOFile.cpp" />
|
||||
<ClCompile Include="JitRegister.cpp" />
|
||||
<ClCompile Include="LdrWatcher.cpp" />
|
||||
<ClCompile Include="Logging\ConsoleListenerWin.cpp" />
|
||||
|
@ -261,7 +261,7 @@
|
||||
<ClInclude Include="GL\GLExtensions\EXT_texture_compression_s3tc.h">
|
||||
<Filter>GL\GLExtensions</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="File.h" />
|
||||
<ClInclude Include="IOFile.h" />
|
||||
<ClInclude Include="Lazy.h" />
|
||||
<ClInclude Include="LdrWatcher.h" />
|
||||
<ClInclude Include="GL\GLExtensions\ARB_texture_compression_bptc.h">
|
||||
|
@ -20,8 +20,8 @@
|
||||
#include "Common/CommonFuncs.h"
|
||||
#include "Common/CommonPaths.h"
|
||||
#include "Common/CommonTypes.h"
|
||||
#include "Common/File.h"
|
||||
#include "Common/FileUtil.h"
|
||||
#include "Common/IOFile.h"
|
||||
#include "Common/Logging/Log.h"
|
||||
|
||||
#ifdef _WIN32
|
||||
|
@ -22,8 +22,8 @@
|
||||
#endif
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
#include "Common/File.h"
|
||||
#include "Common/FileUtil.h"
|
||||
#include "Common/IOFile.h"
|
||||
|
||||
namespace File
|
||||
{
|
@ -10,7 +10,7 @@
|
||||
#include <png.h>
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
#include "Common/File.h"
|
||||
#include "Common/IOFile.h"
|
||||
|
||||
namespace Common
|
||||
{
|
||||
|
@ -13,7 +13,7 @@
|
||||
#include <fmt/format.h>
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
#include "Common/File.h"
|
||||
#include "Common/IOFile.h"
|
||||
#include "Common/StringUtil.h"
|
||||
|
||||
#ifdef _WIN32
|
||||
|
@ -11,7 +11,7 @@
|
||||
#include <type_traits>
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
#include "Common/File.h"
|
||||
#include "Common/IOFile.h"
|
||||
#include "Common/Version.h"
|
||||
|
||||
// On disk format:
|
||||
|
@ -5,7 +5,7 @@
|
||||
#include <chrono>
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
#include "Common/File.h"
|
||||
#include "Common/IOFile.h"
|
||||
#include "Common/PcapFile.h"
|
||||
|
||||
namespace Common
|
||||
|
@ -17,7 +17,7 @@
|
||||
#include <memory>
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
#include "Common/File.h"
|
||||
#include "Common/IOFile.h"
|
||||
|
||||
namespace Common
|
||||
{
|
||||
|
@ -43,7 +43,7 @@
|
||||
|
||||
#include "Common/CommonFuncs.h"
|
||||
#include "Common/CommonTypes.h"
|
||||
#include "Common/File.h"
|
||||
#include "Common/IOFile.h"
|
||||
#include "Common/Logging/Log.h"
|
||||
|
||||
#ifndef _WIN32
|
||||
|
Reference in New Issue
Block a user