Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Henry <ludovic@xamarin.com>2017-01-20 19:32:48 +0300
committerGitHub <noreply@github.com>2017-01-20 19:32:48 +0300
commitf23f72c9de0cb7d03e5db68623440af9dcb19d6c (patch)
treec4c47112b2bf516b6f529ffbf45f295dbf967fcf /msvc/libmonoruntime.vcxproj
parentb3d9af902387c719edf27251049c5214854897b1 (diff)
[io-layer] Extract file (#4255)
* [io-layer] Merge io related headers * [io-layer] Remove global variable _wapi_had_shut_down * [io-layer] Inline io-portability.c file into io.c * [io-layer] Inline locking.c file into io.c * [io-layer] Inline posix.c file into io.c * [file] Move metadata/file-io* files to metadata/w32file* * [io-layer] Extract file functions * [file] Remove overlapped parameter which is always NULL * [file] Remove SECURITY_ATTRIBUTES parameter which is always NULL * [file] Remove GET_FILEEX_INFO_LEVELS parameter which is always GetFileExInfoStandard * [file] Replace ULARGE_INTEGER parameter type with guint64 * [file] Replace WIN32_FILE_ATTRIBUTE_DATA parameter type with MonoIOStat * [file] Remove mono_w32file_create unused parameter tmplate * [file] Fix win32 build
Diffstat (limited to 'msvc/libmonoruntime.vcxproj')
-rw-r--r--msvc/libmonoruntime.vcxproj10
1 files changed, 5 insertions, 5 deletions
diff --git a/msvc/libmonoruntime.vcxproj b/msvc/libmonoruntime.vcxproj
index 6c94d1ff21e..0f4d0703b7b 100644
--- a/msvc/libmonoruntime.vcxproj
+++ b/msvc/libmonoruntime.vcxproj
@@ -29,7 +29,7 @@
<ClCompile Include="..\mono\metadata\console-win32.c" />
<ClCompile Include="..\mono\metadata\property-bag.c" />
<ClCompile Include="..\mono\metadata\w32socket-win32.c" />
- <ClCompile Include="..\mono\metadata\file-io-windows.c" />
+ <ClCompile Include="..\mono\metadata\w32file-win32.c" />
<ClCompile Include="..\mono\metadata\icall-windows.c" />
<ClCompile Include="..\mono\metadata\marshal-windows.c" />
<ClCompile Include="..\mono\metadata\mono-security-windows.c" />
@@ -49,7 +49,7 @@
<ClCompile Include="..\mono\metadata\domain.c" />
<ClCompile Include="..\mono\metadata\environment.c" />
<ClCompile Include="..\mono\metadata\exception.c" />
- <ClCompile Include="..\mono\metadata\file-io.c" />
+ <ClCompile Include="..\mono\metadata\w32file.c" />
<ClCompile Include="..\mono\metadata\file-mmap-windows.c" />
<ClCompile Include="..\mono\metadata\filewatcher.c" />
<ClCompile Include="..\mono\metadata\gc-stats.c" />
@@ -134,9 +134,9 @@
<ClInclude Include="..\mono\metadata\dynamic-stream-internals.h" />
<ClInclude Include="..\mono\metadata\environment.h" />
<ClInclude Include="..\mono\metadata\exception.h" />
- <ClInclude Include="..\mono\metadata\file-io-internals.h" />
- <ClInclude Include="..\mono\metadata\file-io-windows-internals.h" />
- <ClInclude Include="..\mono\metadata\file-io.h" />
+ <ClInclude Include="..\mono\metadata\w32file-internals.h" />
+ <ClInclude Include="..\mono\metadata\w32file-win32-internals.h" />
+ <ClInclude Include="..\mono\metadata\w32file.h" />
<ClInclude Include="..\mono\metadata\filewatcher.h" />
<ClInclude Include="..\mono\metadata\gc-internals.h" />
<ClInclude Include="..\mono\metadata\handle.h" />