dll: rename dispatch.c to fs.c and access.c to security.c

This commit is contained in:
Bill Zissimopoulos 2016-04-17 09:51:54 -07:00
parent 29a5572dc7
commit 7ee6a52260
4 changed files with 10 additions and 10 deletions

View File

@ -24,12 +24,12 @@
<ClInclude Include="..\..\src\dll\library.h" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="..\..\src\dll\access.c" />
<ClCompile Include="..\..\src\dll\security.c" />
<ClCompile Include="..\..\src\dll\debug.c" />
<ClCompile Include="..\..\src\dll\fsctl.c" />
<ClCompile Include="..\..\src\dll\fsop.c" />
<ClCompile Include="..\..\src\dll\library.c" />
<ClCompile Include="..\..\src\dll\dispatch.c" />
<ClCompile Include="..\..\src\dll\fs.c" />
<ClCompile Include="..\..\src\dll\ntstatus.c" />
<ClCompile Include="..\..\src\dll\path.c" />
</ItemGroup>

View File

@ -40,15 +40,15 @@
<ClCompile Include="..\..\src\dll\path.c">
<Filter>Source</Filter>
</ClCompile>
<ClCompile Include="..\..\src\dll\dispatch.c">
<Filter>Source</Filter>
</ClCompile>
<ClCompile Include="..\..\src\dll\access.c">
<Filter>Source</Filter>
</ClCompile>
<ClCompile Include="..\..\src\dll\fsop.c">
<Filter>Source</Filter>
</ClCompile>
<ClCompile Include="..\..\src\dll\fs.c">
<Filter>Source</Filter>
</ClCompile>
<ClCompile Include="..\..\src\dll\security.c">
<Filter>Source</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<None Include="..\..\src\dll\ntstatus.i">

View File

@ -1,5 +1,5 @@
/**
* @file dll/dispatch.c
* @file dll/fs.c
*
* @copyright 2015-2016 Bill Zissimopoulos
*/

View File

@ -1,5 +1,5 @@
/**
* @file dll/access.c
* @file dll/security.c
*
* @copyright 2015-2016 Bill Zissimopoulos
*/