浏览代码

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
blacksirius 13 年之前
父节点
当前提交
e96e10ed72

+ 4 - 0
vcproj-10/char-server_sql.vcxproj

@@ -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" />

+ 12 - 0
vcproj-10/char-server_sql.vcxproj.filters

@@ -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">

+ 4 - 0
vcproj-10/login-server_sql.vcxproj

@@ -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" />

+ 12 - 0
vcproj-10/login-server_sql.vcxproj.filters

@@ -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">

+ 4 - 0
vcproj-10/map-server_sql.vcxproj

@@ -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" />

+ 12 - 0
vcproj-10/map-server_sql.vcxproj.filters

@@ -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">

+ 16 - 0
vcproj-9/char-server_sql.vcproj

@@ -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"
 				>

+ 16 - 0
vcproj-9/login-server_sql.vcproj

@@ -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"
 				>

+ 16 - 0
vcproj-9/map-server_sql.vcproj

@@ -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"
 				>