VC9/VC10: followup for commit r16263 (windows port)
git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@16264 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
parent
3471d3f35e
commit
e96e10ed72
@ -143,9 +143,11 @@
|
||||
<ClInclude Include="..\src\common\ers.h" />
|
||||
<ClInclude Include="..\src\common\malloc.h" />
|
||||
<ClInclude Include="..\src\common\mapindex.h" />
|
||||
<ClInclude Include="..\src\common\mempool.h" />
|
||||
<ClInclude Include="..\src\common\mmo.h" />
|
||||
<ClInclude Include="..\src\common\mutex.h" />
|
||||
<ClInclude Include="..\src\common\nullpo.h" />
|
||||
<ClInclude Include="..\src\common\raconf.h" />
|
||||
<ClInclude Include="..\src\common\random.h" />
|
||||
<ClInclude Include="..\src\common\showmsg.h" />
|
||||
<ClInclude Include="..\src\common\socket.h" />
|
||||
@ -180,8 +182,10 @@
|
||||
<ClCompile Include="..\src\common\ers.c" />
|
||||
<ClCompile Include="..\src\common\malloc.c" />
|
||||
<ClCompile Include="..\src\common\mapindex.c" />
|
||||
<ClCompile Include="..\src\common\mempool.c" />
|
||||
<ClCompile Include="..\src\common\mutex.c" />
|
||||
<ClCompile Include="..\src\common\nullpo.c" />
|
||||
<ClCompile Include="..\src\common\raconf.c" />
|
||||
<ClCompile Include="..\src\common\random.c" />
|
||||
<ClCompile Include="..\src\common\showmsg.c" />
|
||||
<ClCompile Include="..\src\common\socket.c" />
|
||||
|
@ -100,6 +100,12 @@
|
||||
<ClCompile Include="..\src\common\mutex.c">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\src\common\mempool.c">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\src\common\raconf.c">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\src\common\cbasetypes.h">
|
||||
@ -216,6 +222,12 @@
|
||||
<ClInclude Include="..\src\common\mutex.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\src\common\mempool.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\src\common\raconf.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="common">
|
||||
|
@ -138,7 +138,9 @@
|
||||
<ClInclude Include="..\3rdparty\libconfig\scanner.h" />
|
||||
<ClInclude Include="..\3rdparty\libconfig\strbuf.h" />
|
||||
<ClInclude Include="..\3rdparty\libconfig\wincompat.h" />
|
||||
<ClInclude Include="..\src\common\mempool.h" />
|
||||
<ClInclude Include="..\src\common\mutex.h" />
|
||||
<ClInclude Include="..\src\common\raconf.h" />
|
||||
<ClInclude Include="..\src\common\thread.h" />
|
||||
<ClInclude Include="..\src\common\winapi.h" />
|
||||
<ClInclude Include="..\src\login\account.h" />
|
||||
@ -168,7 +170,9 @@
|
||||
<ClCompile Include="..\3rdparty\libconfig\scanctx.c" />
|
||||
<ClCompile Include="..\3rdparty\libconfig\scanner.c" />
|
||||
<ClCompile Include="..\3rdparty\libconfig\strbuf.c" />
|
||||
<ClCompile Include="..\src\common\mempool.c" />
|
||||
<ClCompile Include="..\src\common\mutex.c" />
|
||||
<ClCompile Include="..\src\common\raconf.c" />
|
||||
<ClCompile Include="..\src\common\thread.c" />
|
||||
<ClCompile Include="..\src\login\account_sql.c" />
|
||||
<ClCompile Include="..\src\login\ipban_sql.c" />
|
||||
|
@ -76,6 +76,12 @@
|
||||
<ClCompile Include="..\src\common\mutex.c">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\src\common\mempool.c">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\src\common\raconf.c">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\src\login\account.h">
|
||||
@ -168,6 +174,12 @@
|
||||
<ClInclude Include="..\src\common\mutex.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\src\common\mempool.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\src\common\raconf.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="common">
|
||||
|
@ -144,9 +144,11 @@
|
||||
<ClInclude Include="..\src\common\malloc.h" />
|
||||
<ClInclude Include="..\src\common\mapindex.h" />
|
||||
<ClInclude Include="..\src\common\md5calc.h" />
|
||||
<ClInclude Include="..\src\common\mempool.h" />
|
||||
<ClInclude Include="..\src\common\mmo.h" />
|
||||
<ClInclude Include="..\src\common\mutex.h" />
|
||||
<ClInclude Include="..\src\common\nullpo.h" />
|
||||
<ClInclude Include="..\src\common\raconf.h" />
|
||||
<ClInclude Include="..\src\common\random.h" />
|
||||
<ClInclude Include="..\src\common\showmsg.h" />
|
||||
<ClInclude Include="..\src\common\socket.h" />
|
||||
@ -215,8 +217,10 @@
|
||||
<ClCompile Include="..\src\common\malloc.c" />
|
||||
<ClCompile Include="..\src\common\mapindex.c" />
|
||||
<ClCompile Include="..\src\common\md5calc.c" />
|
||||
<ClCompile Include="..\src\common\mempool.c" />
|
||||
<ClCompile Include="..\src\common\mutex.c" />
|
||||
<ClCompile Include="..\src\common\nullpo.c" />
|
||||
<ClCompile Include="..\src\common\raconf.c" />
|
||||
<ClCompile Include="..\src\common\random.c" />
|
||||
<ClCompile Include="..\src\common\showmsg.c" />
|
||||
<ClCompile Include="..\src\common\socket.c" />
|
||||
|
@ -187,6 +187,12 @@
|
||||
<ClCompile Include="..\src\common\mutex.c">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\src\common\mempool.c">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\src\common\raconf.c">
|
||||
<Filter>common</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\src\map\atcommand.h">
|
||||
@ -393,6 +399,12 @@
|
||||
<ClInclude Include="..\src\common\mutex.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\src\common\mempool.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\src\common\raconf.h">
|
||||
<Filter>common</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Filter Include="common">
|
||||
|
@ -332,6 +332,14 @@
|
||||
RelativePath="..\src\common\mapindex.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\src\common\mempool.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\src\common\mempool.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\src\common\mmo.h"
|
||||
>
|
||||
@ -352,6 +360,14 @@
|
||||
RelativePath="..\src\common\nullpo.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\src\common\raconf.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\src\common\raconf.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\src\common\random.c"
|
||||
>
|
||||
|
@ -302,6 +302,14 @@
|
||||
RelativePath="..\src\common\md5calc.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\src\common\mempool.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\src\common\mempool.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\src\common\mmo.h"
|
||||
>
|
||||
@ -322,6 +330,14 @@
|
||||
RelativePath="..\src\common\nullpo.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\src\common\raconf.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\src\common\raconf.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\src\common\random.c"
|
||||
>
|
||||
|
@ -355,6 +355,14 @@
|
||||
RelativePath="..\src\common\md5calc.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\src\common\mempool.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\src\common\mempool.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\src\common\mmo.h"
|
||||
>
|
||||
@ -375,6 +383,14 @@
|
||||
RelativePath="..\src\common\nullpo.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\src\common\raconf.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\src\common\raconf.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\src\common\random.c"
|
||||
>
|
||||
|
Loading…
x
Reference in New Issue
Block a user