summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpixel <pixel>2006-10-28 16:50:34 +0000
committerpixel <pixel>2006-10-28 16:50:34 +0000
commit20d9fcbab1deada7260965dd12c1d22e62a8b341 (patch)
tree632f79751267357086a9b45b86aab54f4423f04d
parent2faeda63ad30d57c7c36fbc17ce5fd8fbdd21a17 (diff)
Fixing caps in class names.
-rw-r--r--Dalos/Console.cc8
-rw-r--r--Dalos/Console.h8
-rw-r--r--Dalos/Hexview.cc6
-rw-r--r--Dalos/Hexview.h6
-rw-r--r--MSVC/Baltisot - generic/.cvsignore2
-rw-r--r--MSVC/CD-Tool/.cvsignore2
-rw-r--r--MSVC/Dalos/.cvsignore2
-rw-r--r--MSVC/Dalos/Dalos.vcproj6
-rw-r--r--MSVC/PSX-Bundle - library/.cvsignore2
-rw-r--r--MSVC/PSX-Bundle.sln35
-rw-r--r--MSVC/Tools/.cvsignore2
-rw-r--r--MSVC/Tools/Tools.vcproj496
-rw-r--r--MSVC/mogltk/.cvsignore2
-rw-r--r--MSVC/mogltk/mogltk.vcproj40
-rw-r--r--PE/pepatch.rc382
-rw-r--r--PE/reinsert.rc320
16 files changed, 653 insertions, 666 deletions
diff --git a/Dalos/Console.cc b/Dalos/Console.cc
index 51b35f9..8b66764 100644
--- a/Dalos/Console.cc
+++ b/Dalos/Console.cc
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: Console.cc,v 1.8 2006-02-09 16:59:55 pixel Exp $ */
+/* $Id: Console.cc,v 1.9 2006-10-28 16:50:34 pixel Exp $ */
#include <SDL.h>
#include <SDL_thread.h>
@@ -31,7 +31,7 @@
#include <glshape.h>
-#include <font.h>
+#include <Font.h>
#include <Console.h>
@@ -213,8 +213,8 @@ void console::console_keyevent::up(SDL_keysym k) {
old_handler->up(k);
}
-console::console(mogltk::shape * sh, mogltk::widget * father, int y, int _nlines) :
- widget(father, 0, y, father->GetW(), _nlines * 13, 0, "console", sh), nlines(_nlines), page(0), protect_add_line(SDL_CreateMutex()) {
+console::console(mogltk::Shape * sh, mogltk::Widget * father, int y, int _nlines) :
+ Widget(father, 0, y, father->GetW(), _nlines * 13, 0, "console", sh), nlines(_nlines), page(0), protect_add_line(SDL_CreateMutex()) {
SetVisible(false);
}
diff --git a/Dalos/Console.h b/Dalos/Console.h
index e818aba..16b1029 100644
--- a/Dalos/Console.h
+++ b/Dalos/Console.h
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: Console.h,v 1.6 2006-02-02 11:01:12 pixel Exp $ */
+/* $Id: Console.h,v 1.7 2006-10-28 16:50:34 pixel Exp $ */
#ifndef __CONSOLE_H__
#define __CONSOLE_H__
@@ -28,16 +28,16 @@
#include <Buffer.h>
#include <engine.h>
-#include <widgets.h>
+#include <Widgets.h>
-class console : public mogltk::widget {
+class console : public mogltk::Widget {
public:
class console_keyevent : public mogltk::engine::keyevent {
public:
virtual void down(SDL_keysym k);
virtual void up(SDL_keysym k);
};
- console(mogltk::shape * sh, mogltk::widget * father, int y, int _nlines);
+ console(mogltk::Shape * sh, mogltk::Widget * father, int y, int _nlines);
virtual ~console() throw (GeneralException);
void add_line(const String & s);
void page_reset();
diff --git a/Dalos/Hexview.cc b/Dalos/Hexview.cc
index f523e8d..ddcf00b 100644
--- a/Dalos/Hexview.cc
+++ b/Dalos/Hexview.cc
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: Hexview.cc,v 1.6 2006-02-02 17:25:28 pixel Exp $ */
+/* $Id: Hexview.cc,v 1.7 2006-10-28 16:50:34 pixel Exp $ */
#include <SDL.h>
@@ -80,8 +80,8 @@ void hexview::hexview_keyevent::up(SDL_keysym k) {
old_handler->up(k);
}
-hexview::hexview(mogltk::shape * sh, mogltk::widget * father) :
- widget(father, 0, 0, father->GetW(), father->GetH(), 0, "hexview", sh), h(0), width(16), offset(0), offset_loaded(-1), size_loaded(0), data(0), virtual_base(0), shift(0)
+hexview::hexview(mogltk::Shape * sh, mogltk::Widget * father) :
+ Widget(father, 0, 0, father->GetW(), father->GetH(), 0, "hexview", sh), h(0), width(16), offset(0), offset_loaded(-1), size_loaded(0), data(0), virtual_base(0), shift(0)
{
nlines = GetH() / 13; CurrentHexview = this;
}
diff --git a/Dalos/Hexview.h b/Dalos/Hexview.h
index 4bee1f8..845012f 100644
--- a/Dalos/Hexview.h
+++ b/Dalos/Hexview.h
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: Hexview.h,v 1.5 2006-02-02 11:01:12 pixel Exp $ */
+/* $Id: Hexview.h,v 1.6 2006-10-28 16:50:34 pixel Exp $ */
#ifndef __HEXVIEW_H__
#define __HEXVIEW_H__
@@ -25,14 +25,14 @@
#include <engine.h>
#include <widgets.h>
-class hexview : public mogltk::widget {
+class hexview : public mogltk::Widget {
public:
class hexview_keyevent : public mogltk::engine::keyevent {
public:
virtual void down(SDL_keysym k);
virtual void up(SDL_keysym k);
};
- hexview(mogltk::shape * sh, mogltk::widget * father);
+ hexview(mogltk::Shape * sh, mogltk::Widget * father);
virtual ~hexview() throw (GeneralException);
void set_virtual_base(int _virtual_base);
int get_nlines();
diff --git a/MSVC/Baltisot - generic/.cvsignore b/MSVC/Baltisot - generic/.cvsignore
index a21c48f..043d84f 100644
--- a/MSVC/Baltisot - generic/.cvsignore
+++ b/MSVC/Baltisot - generic/.cvsignore
@@ -1,2 +1,2 @@
-Debug
+Debug
Release \ No newline at end of file
diff --git a/MSVC/CD-Tool/.cvsignore b/MSVC/CD-Tool/.cvsignore
index afc77b6..77607be 100644
--- a/MSVC/CD-Tool/.cvsignore
+++ b/MSVC/CD-Tool/.cvsignore
@@ -1,2 +1,2 @@
-Release
+Release
Debug \ No newline at end of file
diff --git a/MSVC/Dalos/.cvsignore b/MSVC/Dalos/.cvsignore
index afc77b6..77607be 100644
--- a/MSVC/Dalos/.cvsignore
+++ b/MSVC/Dalos/.cvsignore
@@ -1,2 +1,2 @@
-Release
+Release
Debug \ No newline at end of file
diff --git a/MSVC/Dalos/Dalos.vcproj b/MSVC/Dalos/Dalos.vcproj
index 8bbf244..dbbcced 100644
--- a/MSVC/Dalos/Dalos.vcproj
+++ b/MSVC/Dalos/Dalos.vcproj
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="Windows-1252"?>
<VisualStudioProject
ProjectType="Visual C++"
- Version="8,00"
+ Version="8.00"
Name="Dalos"
ProjectGUID="{CDCBA663-BC45-4C3B-87EC-3F684CFF25A8}"
RootNamespace="Dalos"
@@ -61,7 +61,7 @@
/>
<Tool
Name="VCLinkerTool"
- AdditionalDependencies="SDLmain.lib SDL.lib opengl32.lib glu32.lib libusb.lib"
+ AdditionalDependencies="SDLmain.lib SDL.lib opengl32.lib glu32.lib ws2_32.lib"
LinkIncremental="2"
AdditionalLibraryDirectories="..\..\..\SDL\lib;C:\sources\libusb\lib\msvc"
GenerateDebugInformation="true"
@@ -137,7 +137,7 @@
/>
<Tool
Name="VCLinkerTool"
- AdditionalDependencies="SDLmain.lib SDL.lib opengl32.lib glu32.lib libusb.lib"
+ AdditionalDependencies="SDLmain.lib SDL.lib opengl32.lib glu32.lib ws2_32.lib"
LinkIncremental="1"
AdditionalLibraryDirectories="..\..\..\SDL\lib;C:\sources\libusb\lib\msvc"
GenerateDebugInformation="true"
diff --git a/MSVC/PSX-Bundle - library/.cvsignore b/MSVC/PSX-Bundle - library/.cvsignore
index a21c48f..043d84f 100644
--- a/MSVC/PSX-Bundle - library/.cvsignore
+++ b/MSVC/PSX-Bundle - library/.cvsignore
@@ -1,2 +1,2 @@
-Debug
+Debug
Release \ No newline at end of file
diff --git a/MSVC/PSX-Bundle.sln b/MSVC/PSX-Bundle.sln
index 4f2ba4a..38db9a7 100644
--- a/MSVC/PSX-Bundle.sln
+++ b/MSVC/PSX-Bundle.sln
@@ -3,34 +3,21 @@ Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Baltisot - generic", "Baltisot - generic\Baltisot - generic.vcproj", "{BEAF9E07-6592-49AC-9DA5-0B47FAB88C96}"
EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PSX-Bundle - library", "PSX-Bundle - library\PSX-Bundle - library.vcproj", "{A7C52E48-947F-4B84-84F8-B2BD1314C9B4}"
- ProjectSection(ProjectDependencies) = postProject
- {BEAF9E07-6592-49AC-9DA5-0B47FAB88C96} = {BEAF9E07-6592-49AC-9DA5-0B47FAB88C96}
- EndProjectSection
-EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mogltk", "mogltk\mogltk.vcproj", "{4C08E5A7-AE14-4454-A64B-8D1A24362B87}"
ProjectSection(ProjectDependencies) = postProject
{BEAF9E07-6592-49AC-9DA5-0B47FAB88C96} = {BEAF9E07-6592-49AC-9DA5-0B47FAB88C96}
EndProjectSection
EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CD-Tool", "CD-Tool\CD-Tool.vcproj", "{937F3AE7-03E9-4EF5-8B59-CAB1DD6C5C58}"
- ProjectSection(ProjectDependencies) = postProject
- {A7C52E48-947F-4B84-84F8-B2BD1314C9B4} = {A7C52E48-947F-4B84-84F8-B2BD1314C9B4}
- {BEAF9E07-6592-49AC-9DA5-0B47FAB88C96} = {BEAF9E07-6592-49AC-9DA5-0B47FAB88C96}
- EndProjectSection
-EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Dalos", "Dalos\Dalos.vcproj", "{CDCBA663-BC45-4C3B-87EC-3F684CFF25A8}"
ProjectSection(ProjectDependencies) = postProject
- {937F3AE7-03E9-4EF5-8B59-CAB1DD6C5C58} = {937F3AE7-03E9-4EF5-8B59-CAB1DD6C5C58}
- {4C08E5A7-AE14-4454-A64B-8D1A24362B87} = {4C08E5A7-AE14-4454-A64B-8D1A24362B87}
- {A7C52E48-947F-4B84-84F8-B2BD1314C9B4} = {A7C52E48-947F-4B84-84F8-B2BD1314C9B4}
{BEAF9E07-6592-49AC-9DA5-0B47FAB88C96} = {BEAF9E07-6592-49AC-9DA5-0B47FAB88C96}
+ {A7C52E48-947F-4B84-84F8-B2BD1314C9B4} = {A7C52E48-947F-4B84-84F8-B2BD1314C9B4}
+ {4C08E5A7-AE14-4454-A64B-8D1A24362B87} = {4C08E5A7-AE14-4454-A64B-8D1A24362B87}
EndProjectSection
EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PSx-Patcher", "PSx-Patcher\PSx-Patcher.vcproj", "{15A91021-E932-427B-9A6F-731AFBA8928B}"
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PSX-Bundle - library", "PSX-Bundle - library\PSX-Bundle - library.vcproj", "{A7C52E48-947F-4B84-84F8-B2BD1314C9B4}"
ProjectSection(ProjectDependencies) = postProject
{BEAF9E07-6592-49AC-9DA5-0B47FAB88C96} = {BEAF9E07-6592-49AC-9DA5-0B47FAB88C96}
- {A7C52E48-947F-4B84-84F8-B2BD1314C9B4} = {A7C52E48-947F-4B84-84F8-B2BD1314C9B4}
EndProjectSection
EndProject
Global
@@ -43,26 +30,18 @@ Global
{BEAF9E07-6592-49AC-9DA5-0B47FAB88C96}.Debug|Win32.Build.0 = Debug|Win32
{BEAF9E07-6592-49AC-9DA5-0B47FAB88C96}.Release|Win32.ActiveCfg = Release|Win32
{BEAF9E07-6592-49AC-9DA5-0B47FAB88C96}.Release|Win32.Build.0 = Release|Win32
- {A7C52E48-947F-4B84-84F8-B2BD1314C9B4}.Debug|Win32.ActiveCfg = Debug|Win32
- {A7C52E48-947F-4B84-84F8-B2BD1314C9B4}.Debug|Win32.Build.0 = Debug|Win32
- {A7C52E48-947F-4B84-84F8-B2BD1314C9B4}.Release|Win32.ActiveCfg = Release|Win32
- {A7C52E48-947F-4B84-84F8-B2BD1314C9B4}.Release|Win32.Build.0 = Release|Win32
{4C08E5A7-AE14-4454-A64B-8D1A24362B87}.Debug|Win32.ActiveCfg = Debug|Win32
{4C08E5A7-AE14-4454-A64B-8D1A24362B87}.Debug|Win32.Build.0 = Debug|Win32
{4C08E5A7-AE14-4454-A64B-8D1A24362B87}.Release|Win32.ActiveCfg = Release|Win32
{4C08E5A7-AE14-4454-A64B-8D1A24362B87}.Release|Win32.Build.0 = Release|Win32
- {937F3AE7-03E9-4EF5-8B59-CAB1DD6C5C58}.Debug|Win32.ActiveCfg = Debug|Win32
- {937F3AE7-03E9-4EF5-8B59-CAB1DD6C5C58}.Debug|Win32.Build.0 = Debug|Win32
- {937F3AE7-03E9-4EF5-8B59-CAB1DD6C5C58}.Release|Win32.ActiveCfg = Release|Win32
- {937F3AE7-03E9-4EF5-8B59-CAB1DD6C5C58}.Release|Win32.Build.0 = Release|Win32
{CDCBA663-BC45-4C3B-87EC-3F684CFF25A8}.Debug|Win32.ActiveCfg = Debug|Win32
{CDCBA663-BC45-4C3B-87EC-3F684CFF25A8}.Debug|Win32.Build.0 = Debug|Win32
{CDCBA663-BC45-4C3B-87EC-3F684CFF25A8}.Release|Win32.ActiveCfg = Release|Win32
{CDCBA663-BC45-4C3B-87EC-3F684CFF25A8}.Release|Win32.Build.0 = Release|Win32
- {15A91021-E932-427B-9A6F-731AFBA8928B}.Debug|Win32.ActiveCfg = Debug|Win32
- {15A91021-E932-427B-9A6F-731AFBA8928B}.Debug|Win32.Build.0 = Debug|Win32
- {15A91021-E932-427B-9A6F-731AFBA8928B}.Release|Win32.ActiveCfg = Release|Win32
- {15A91021-E932-427B-9A6F-731AFBA8928B}.Release|Win32.Build.0 = Release|Win32
+ {A7C52E48-947F-4B84-84F8-B2BD1314C9B4}.Debug|Win32.ActiveCfg = Debug|Win32
+ {A7C52E48-947F-4B84-84F8-B2BD1314C9B4}.Debug|Win32.Build.0 = Debug|Win32
+ {A7C52E48-947F-4B84-84F8-B2BD1314C9B4}.Release|Win32.ActiveCfg = Release|Win32
+ {A7C52E48-947F-4B84-84F8-B2BD1314C9B4}.Release|Win32.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
diff --git a/MSVC/Tools/.cvsignore b/MSVC/Tools/.cvsignore
index a21c48f..043d84f 100644
--- a/MSVC/Tools/.cvsignore
+++ b/MSVC/Tools/.cvsignore
@@ -1,2 +1,2 @@
-Debug
+Debug
Release \ No newline at end of file
diff --git a/MSVC/Tools/Tools.vcproj b/MSVC/Tools/Tools.vcproj
index 2789e3b..775960c 100644
--- a/MSVC/Tools/Tools.vcproj
+++ b/MSVC/Tools/Tools.vcproj
@@ -1,248 +1,248 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
- ProjectType="Visual C++"
- Version="8,00"
- Name="Tools"
- ProjectGUID="{6CAE7F4D-C27B-43F3-B30A-84C5F32EFA29}"
- Keyword="MakeFileProj"
- >
- <Platforms>
- <Platform
- Name="Win32"
- />
- </Platforms>
- <ToolFiles>
- </ToolFiles>
- <Configurations>
- <Configuration
- Name="Debug|Win32"
- OutputDirectory="Debug"
- IntermediateDirectory="Debug"
- ConfigurationType="0"
- >
- <Tool
- Name="VCNMakeTool"
- BuildCommandLine="nmake debugall"
- ReBuildCommandLine="nmake debugrebuild"
- CleanCommandLine="nmake clean"
- />
- <Tool
- Name="VCAppVerifierTool"
- />
- </Configuration>
- <Configuration
- Name="Release|Win32"
- OutputDirectory="Release"
- IntermediateDirectory="Release"
- ConfigurationType="0"
- >
- <Tool
- Name="VCNMakeTool"
- BuildCommandLine="nmake all"
- ReBuildCommandLine="nmake rebuild"
- CleanCommandLine="nmake clean"
- />
- <Tool
- Name="VCAppVerifierTool"
- />
- </Configuration>
- </Configurations>
- <References>
- </References>
- <Files>
- <Filter
- Name="Common tools"
- Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm"
- >
- <File
- RelativePath="..\..\bgrep.cpp"
- >
- </File>
- <File
- RelativePath="..\..\cd-tool.cpp"
- >
- </File>
- <File
- RelativePath="..\..\cd-tool.lua"
- >
- </File>
- <File
- RelativePath="..\..\crypto-search.cpp"
- >
- </File>
- <File
- RelativePath="..\..\luapatch-languages.h"
- >
- </File>
- <File
- RelativePath="..\..\luapatch-res.h"
- >
- </File>
- <File
- RelativePath="..\..\luapatch.cpp"
- >
- </File>
- <File
- RelativePath="..\..\luapatch.rc"
- >
- </File>
- <File
- RelativePath="..\..\lzss-main.cpp"
- >
- </File>
- <File
- RelativePath="..\..\testlua.lua"
- >
- </File>
- </Filter>
- <Filter
- Name="Xenogears tools"
- >
- <File
- RelativePath="..\..\Xenogears\compil.lex"
- >
- </File>
- <File
- RelativePath="..\..\Xenogears\Decrypt.cpp"
- >
- </File>
- <File
- RelativePath="..\..\Xenogears\main_dump.cpp"
- >
- </File>
- <File
- RelativePath="..\..\Xenogears\nmakefile"
- >
- </File>
- <File
- RelativePath="..\..\Xenogears\reinsert.cpp"
- >
- </File>
- <File
- RelativePath="..\..\Xenogears\script-comp.cpp"
- >
- </File>
- <File
- RelativePath="..\..\Xenogears\script-dec.cpp"
- >
- </File>
- <Filter
- Name="Helpers"
- >
- <File
- RelativePath="..\..\Xenogears\map2sqr"
- >
- </File>
- <File
- RelativePath="..\..\Xenogears\XenoCD1.map"
- >
- </File>
- <File
- RelativePath="..\..\Xenogears\XenoCD2.map"
- >
- </File>
- </Filter>
- </Filter>
- <Filter
- Name="Global Makefiles"
- >
- <File
- RelativePath="makefile"
- >
- </File>
- <File
- RelativePath="MakInDir.bat"
- >
- </File>
- <File
- RelativePath="master.mak"
- >
- </File>
- <File
- RelativePath="..\..\nmakefile"
- >
- </File>
- </Filter>
- <Filter
- Name="Parasite Eve tools"
- >
- <File
- RelativePath="..\..\PE\Aya.bmp"
- >
- </File>
- <File
- RelativePath="..\..\PE\aya.ico"
- >
- </File>
- <File
- RelativePath="..\..\PE\compil.lex"
- >
- </File>
- <File
- RelativePath="..\..\PE\compilall.cpp"
- >
- </File>
- <File
- RelativePath="..\..\PE\extract-rooms.cpp"
- >
- </File>
- <File
- RelativePath="..\..\PE\extract-various.cpp"
- >
- </File>
- <File
- RelativePath="..\..\PE\extract.cpp"
- >
- </File>
- <File
- RelativePath="..\..\PE\nmakefile"
- >
- </File>
- <File
- RelativePath="..\..\PE\pe-hack.lua"
- >
- </File>
- <File
- RelativePath="..\..\PE\pepatch-res.h"
- >
- </File>
- <File
- RelativePath="..\..\PE\pepatch.cpp"
- >
- </File>
- <File
- RelativePath="..\..\PE\pepatch.rc"
- >
- </File>
- <File
- RelativePath="..\..\PE\reinsert-res.h"
- >
- </File>
- <File
- RelativePath="..\..\PE\reinsert.cpp"
- >
- </File>
- <File
- RelativePath="..\..\PE\reinsert.h"
- >
- </File>
- <File
- RelativePath="..\..\PE\reinsert.rc"
- >
- </File>
- <File
- RelativePath="..\..\PE\table.h"
- >
- </File>
- </Filter>
- <File
- RelativePath="..\..\cdrom.ico"
- >
- </File>
- <File
- RelativePath="Links.htm"
- DeploymentContent="TRUE"
- >
- </File>
- </Files>
-</VisualStudioProject>
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+ ProjectType="Visual C++"
+ Version="8,00"
+ Name="Tools"
+ ProjectGUID="{6CAE7F4D-C27B-43F3-B30A-84C5F32EFA29}"
+ Keyword="MakeFileProj"
+ >
+ <Platforms>
+ <Platform
+ Name="Win32"
+ />
+ </Platforms>
+ <ToolFiles>
+ </ToolFiles>
+ <Configurations>
+ <Configuration
+ Name="Debug|Win32"
+ OutputDirectory="Debug"
+ IntermediateDirectory="Debug"
+ ConfigurationType="0"
+ >
+ <Tool
+ Name="VCNMakeTool"
+ BuildCommandLine="nmake debugall"
+ ReBuildCommandLine="nmake debugrebuild"
+ CleanCommandLine="nmake clean"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ </Configuration>
+ <Configuration
+ Name="Release|Win32"
+ OutputDirectory="Release"
+ IntermediateDirectory="Release"
+ ConfigurationType="0"
+ >
+ <Tool
+ Name="VCNMakeTool"
+ BuildCommandLine="nmake all"
+ ReBuildCommandLine="nmake rebuild"
+ CleanCommandLine="nmake clean"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ </Configuration>
+ </Configurations>
+ <References>
+ </References>
+ <Files>
+ <Filter
+ Name="Common tools"
+ Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm"
+ >
+ <File
+ RelativePath="..\..\bgrep.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\..\cd-tool.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\..\cd-tool.lua"
+ >
+ </File>
+ <File
+ RelativePath="..\..\crypto-search.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\..\luapatch-languages.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\luapatch-res.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\luapatch.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\..\luapatch.rc"
+ >
+ </File>
+ <File
+ RelativePath="..\..\lzss-main.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\..\testlua.lua"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="Xenogears tools"
+ >
+ <File
+ RelativePath="..\..\Xenogears\compil.lex"
+ >
+ </File>
+ <File
+ RelativePath="..\..\Xenogears\Decrypt.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\..\Xenogears\main_dump.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\..\Xenogears\nmakefile"
+ >
+ </File>
+ <File
+ RelativePath="..\..\Xenogears\reinsert.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\..\Xenogears\script-comp.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\..\Xenogears\script-dec.cpp"
+ >
+ </File>
+ <Filter
+ Name="Helpers"
+ >
+ <File
+ RelativePath="..\..\Xenogears\map2sqr"
+ >
+ </File>
+ <File
+ RelativePath="..\..\Xenogears\XenoCD1.map"
+ >
+ </File>
+ <File
+ RelativePath="..\..\Xenogears\XenoCD2.map"
+ >
+ </File>
+ </Filter>
+ </Filter>
+ <Filter
+ Name="Global Makefiles"
+ >
+ <File
+ RelativePath="makefile"
+ >
+ </File>
+ <File
+ RelativePath="MakInDir.bat"
+ >
+ </File>
+ <File
+ RelativePath="master.mak"
+ >
+ </File>
+ <File
+ RelativePath="..\..\nmakefile"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="Parasite Eve tools"
+ >
+ <File
+ RelativePath="..\..\PE\Aya.bmp"
+ >
+ </File>
+ <File
+ RelativePath="..\..\PE\aya.ico"
+ >
+ </File>
+ <File
+ RelativePath="..\..\PE\compil.lex"
+ >
+ </File>
+ <File
+ RelativePath="..\..\PE\compilall.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\..\PE\extract-rooms.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\..\PE\extract-various.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\..\PE\extract.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\..\PE\nmakefile"
+ >
+ </File>
+ <File
+ RelativePath="..\..\PE\pe-hack.lua"
+ >
+ </File>
+ <File
+ RelativePath="..\..\PE\pepatch-res.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\PE\pepatch.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\..\PE\pepatch.rc"
+ >
+ </File>
+ <File
+ RelativePath="..\..\PE\reinsert-res.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\PE\reinsert.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\..\PE\reinsert.h"
+ >
+ </File>
+ <File
+ RelativePath="..\..\PE\reinsert.rc"
+ >
+ </File>
+ <File
+ RelativePath="..\..\PE\table.h"
+ >
+ </File>
+ </Filter>
+ <File
+ RelativePath="..\..\cdrom.ico"
+ >
+ </File>
+ <File
+ RelativePath="Links.htm"
+ DeploymentContent="TRUE"
+ >
+ </File>
+ </Files>
+</VisualStudioProject>
diff --git a/MSVC/mogltk/.cvsignore b/MSVC/mogltk/.cvsignore
index a21c48f..043d84f 100644
--- a/MSVC/mogltk/.cvsignore
+++ b/MSVC/mogltk/.cvsignore
@@ -1,2 +1,2 @@
-Debug
+Debug
Release \ No newline at end of file
diff --git a/MSVC/mogltk/mogltk.vcproj b/MSVC/mogltk/mogltk.vcproj
index 67d8e5d..be5323f 100644
--- a/MSVC/mogltk/mogltk.vcproj
+++ b/MSVC/mogltk/mogltk.vcproj
@@ -290,22 +290,30 @@
<Filter
Name="LUA bindings"
>
- <File
- RelativePath="..\..\mogltk\lib\LuaGL.cc"
- >
- </File>
- <File
- RelativePath="..\..\mogltk\include\LuaGL.h"
- >
- </File>
- <File
- RelativePath="..\..\mogltk\lib\mogltk-lua-bindings.cc"
- >
- </File>
- <File
- RelativePath="..\..\mogltk\include\mogltk-lua-bindings.h"
- >
- </File>
+ <Filter
+ Name="LuaGL"
+ >
+ <File
+ RelativePath="..\..\mogltk\lib\LuaGL.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\..\mogltk\include\LuaGL.h"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="LuaWidget"
+ >
+ <File
+ RelativePath="..\..\mogltk\lib\LuaWidget.cc"
+ >
+ </File>
+ <File
+ RelativePath="..\..\mogltk\include\LuaWidget.h"
+ >
+ </File>
+ </Filter>
</Filter>
</Files>
<Globals>
diff --git a/PE/pepatch.rc b/PE/pepatch.rc
index 611dad5..64d37b6 100644
--- a/PE/pepatch.rc
+++ b/PE/pepatch.rc
@@ -1,191 +1,191 @@
-// Microsoft Visual C++ generated resource script.
-//
-#include "pepatch-res.h"
-
-#define APSTUDIO_READONLY_SYMBOLS
-/////////////////////////////////////////////////////////////////////////////
-//
-// Generated from the TEXTINCLUDE 2 resource.
-//
-#include "afxres.h"
-
-/////////////////////////////////////////////////////////////////////////////
-#undef APSTUDIO_READONLY_SYMBOLS
-
-/////////////////////////////////////////////////////////////////////////////
-// English (U.S.) resources
-
-#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
-#ifdef _WIN32
-LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
-#pragma code_page(1252)
-#endif //_WIN32
-
-#ifdef APSTUDIO_INVOKED
-/////////////////////////////////////////////////////////////////////////////
-//
-// TEXTINCLUDE
-//
-
-1 TEXTINCLUDE
-BEGIN
- "pepatch-res.h\0"
-END
-
-2 TEXTINCLUDE
-BEGIN
- "#include ""afxres.h""\r\n"
- "\0"
-END
-
-3 TEXTINCLUDE
-BEGIN
- "\r\n"
- "\0"
-END
-
-#endif // APSTUDIO_INVOKED
-
-#endif // English (U.S.) resources
-/////////////////////////////////////////////////////////////////////////////
-
-
-/////////////////////////////////////////////////////////////////////////////
-// French (France) resources
-
-#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_FRA)
-#ifdef _WIN32
-LANGUAGE LANG_FRENCH, SUBLANG_FRENCH
-#pragma code_page(1252)
-#endif //_WIN32
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Icon
-//
-
-// Icon with lowest ID value placed first to ensure application icon
-// remains consistent on all systems.
-IDI_ICON ICON "Aya.ico"
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Version
-//
-
-VS_VERSION_INFO VERSIONINFO
- FILEVERSION 1,0,0,0
- PRODUCTVERSION 1,0,0,0
- FILEFLAGSMASK 0x17L
-#ifdef _DEBUG
- FILEFLAGS 0x1L
-#else
- FILEFLAGS 0x0L
-#endif
- FILEOS 0x4L
- FILETYPE 0x1L
- FILESUBTYPE 0x0L
-BEGIN
- BLOCK "StringFileInfo"
- BEGIN
- BLOCK "040c04b0"
- BEGIN
- VALUE "Comments", "Programme de patch français pour Parasite Eve"
- VALUE "CompanyName", "Rpg-T - http://rpgplayer.uhrft.org/"
- VALUE "FileDescription", "Programme de patch français pour Parasite Eve"
- VALUE "FileVersion", "1, 0, 0, 0"
- VALUE "InternalName", "pepatch"
- VALUE "LegalCopyright", "Copyright © 2003 Nicolas ""Pixel"" Noble / Rpg-T"
- VALUE "OriginalFilename", "pepatch.rc"
- VALUE "ProductName", "pepatch"
- VALUE "ProductVersion", "1, 0, 0, 0"
- END
- END
- BLOCK "VarFileInfo"
- BEGIN
- VALUE "Translation", 0x40c, 1200
- END
-END
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Dialog
-//
-
-IDD_PROGRESS DIALOGEX 0, 0, 288, 119
-STYLE DS_SETFONT | DS_MODALFRAME | DS_3DLOOK | DS_FIXEDSYS | DS_CENTER |
- WS_POPUP | WS_CAPTION
-EXSTYLE WS_EX_TOPMOST | WS_EX_TOOLWINDOW
-CAPTION "Patch en cours..."
-FONT 8, "MS Shell Dlg", 400, 0, 0x1
-BEGIN
- CONTROL "",IDC_FILLOUT1,"Static",SS_ETCHEDFRAME,15,30,258,16
- CONTROL "",IDC_FILLIN1,"Static",SS_GRAYRECT,55,33,181,9
- LTEXT "Progression du patch:",IDC_STATIC,15,10,132,10
- CONTROL "",IDC_FILLOUT2,"Static",SS_ETCHEDFRAME,15,51,258,16
- CONTROL "",IDC_FILLIN2,"Static",SS_GRAYRECT,55,54,181,9
- LTEXT "Info1",IDC_INFO1,15,71,258,12
- LTEXT "Info2",IDC_INFO2,15,84,258,10
- LTEXT "Info3",IDC_INFO3,15,97,258,12
-END
-
-IDD_ABOUT DIALOGEX 0, 0, 316, 159
-STYLE DS_SETFONT | DS_MODALFRAME | DS_3DLOOK | DS_FIXEDSYS | DS_CENTER |
- WS_POPUP | WS_CAPTION
-EXSTYLE WS_EX_TOPMOST | WS_EX_TOOLWINDOW
-CAPTION
-"Traduction de Parasite Eve en Français - © 2003 Rpg-t - http://rpgplayer.uhrft.org"
-
-FONT 8, "MS Shell Dlg", 400, 0, 0x1
-BEGIN
- DEFPUSHBUTTON "Créer",IDOK,259,6,50,14
- PUSHBUTTON "Quitter",IDCANCEL,259,24,50,14
- CONTROL "Inclure le sélecteur PAL/NTSC",IDC_PALFIX,"Button",
- BS_AUTOCHECKBOX | WS_TABSTOP,6,141,114,14
- CONTROL "",IDC_STATIC,"Static",SS_ETCHEDFRAME,1,1,314,157
- LTEXT "Static",IDC_ABOUT,5,4,252,137
- CONTROL 103,IDC_STATIC,"Static",SS_BITMAP,271,117,43,39
-END
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// DESIGNINFO
-//
-
-#ifdef APSTUDIO_INVOKED
-GUIDELINES DESIGNINFO
-BEGIN
- IDD_PROGRESS, DIALOG
- BEGIN
- LEFTMARGIN, 15
- RIGHTMARGIN, 273
- TOPMARGIN, 10
- BOTTOMMARGIN, 109
- END
-END
-#endif // APSTUDIO_INVOKED
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Bitmap
-//
-
-IDB_AYA BITMAP "Aya.bmp"
-#endif // French (France) resources
-/////////////////////////////////////////////////////////////////////////////
-
-
-
-#ifndef APSTUDIO_INVOKED
-/////////////////////////////////////////////////////////////////////////////
-//
-// Generated from the TEXTINCLUDE 3 resource.
-//
-
-
-/////////////////////////////////////////////////////////////////////////////
-#endif // not APSTUDIO_INVOKED
-
+// Microsoft Visual C++ generated resource script.
+//
+#include "pepatch-res.h"
+
+#define APSTUDIO_READONLY_SYMBOLS
+/////////////////////////////////////////////////////////////////////////////
+//
+// Generated from the TEXTINCLUDE 2 resource.
+//
+#include "afxres.h"
+
+/////////////////////////////////////////////////////////////////////////////
+#undef APSTUDIO_READONLY_SYMBOLS
+
+/////////////////////////////////////////////////////////////////////////////
+// English (U.S.) resources
+
+#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
+#ifdef _WIN32
+LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
+#pragma code_page(1252)
+#endif //_WIN32
+
+#ifdef APSTUDIO_INVOKED
+/////////////////////////////////////////////////////////////////////////////
+//
+// TEXTINCLUDE
+//
+
+1 TEXTINCLUDE
+BEGIN
+ "pepatch-res.h\0"
+END
+
+2 TEXTINCLUDE
+BEGIN
+ "#include ""afxres.h""\r\n"
+ "\0"
+END
+
+3 TEXTINCLUDE
+BEGIN
+ "\r\n"
+ "\0"
+END
+
+#endif // APSTUDIO_INVOKED
+
+#endif // English (U.S.) resources
+/////////////////////////////////////////////////////////////////////////////
+
+
+/////////////////////////////////////////////////////////////////////////////
+// French (France) resources
+
+#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_FRA)
+#ifdef _WIN32
+LANGUAGE LANG_FRENCH, SUBLANG_FRENCH
+#pragma code_page(1252)
+#endif //_WIN32
+
+/////////////////////////////////////////////////////////////////////////////
+//
+// Icon
+//
+
+// Icon with lowest ID value placed first to ensure application icon
+// remains consistent on all systems.
+IDI_ICON ICON "Aya.ico"
+
+/////////////////////////////////////////////////////////////////////////////
+//
+// Version
+//
+
+VS_VERSION_INFO VERSIONINFO
+ FILEVERSION 1,0,0,0
+ PRODUCTVERSION 1,0,0,0
+ FILEFLAGSMASK 0x17L
+#ifdef _DEBUG
+ FILEFLAGS 0x1L
+#else
+ FILEFLAGS 0x0L
+#endif
+ FILEOS 0x4L
+ FILETYPE 0x1L
+ FILESUBTYPE 0x0L
+BEGIN
+ BLOCK "StringFileInfo"
+ BEGIN
+ BLOCK "040c04b0"
+ BEGIN
+ VALUE "Comments", "Programme de patch français pour Parasite Eve"
+ VALUE "CompanyName", "Rpg-T - http://rpgplayer.uhrft.org/"
+ VALUE "FileDescription", "Programme de patch français pour Parasite Eve"
+ VALUE "FileVersion", "1, 0, 0, 0"
+ VALUE "InternalName", "pepatch"
+ VALUE "LegalCopyright", "Copyright © 2003 Nicolas ""Pixel"" Noble / Rpg-T"
+ VALUE "OriginalFilename", "pepatch.rc"
+ VALUE "ProductName", "pepatch"
+ VALUE "ProductVersion", "1, 0, 0, 0"
+ END
+ END
+ BLOCK "VarFileInfo"
+ BEGIN
+ VALUE "Translation", 0x40c, 1200
+ END
+END
+
+
+/////////////////////////////////////////////////////////////////////////////
+//
+// Dialog
+//
+
+IDD_PROGRESS DIALOGEX 0, 0, 288, 119
+STYLE DS_SETFONT | DS_MODALFRAME | DS_3DLOOK | DS_FIXEDSYS | DS_CENTER |
+ WS_POPUP | WS_CAPTION
+EXSTYLE WS_EX_TOPMOST | WS_EX_TOOLWINDOW
+CAPTION "Patch en cours..."
+FONT 8, "MS Shell Dlg", 400, 0, 0x1
+BEGIN
+ CONTROL "",IDC_FILLOUT1,"Static",SS_ETCHEDFRAME,15,30,258,16
+ CONTROL "",IDC_FILLIN1,"Static",SS_GRAYRECT,55,33,181,9
+ LTEXT "Progression du patch:",IDC_STATIC,15,10,132,10
+ CONTROL "",IDC_FILLOUT2,"Static",SS_ETCHEDFRAME,15,51,258,16
+ CONTROL "",IDC_FILLIN2,"Static",SS_GRAYRECT,55,54,181,9
+ LTEXT "Info1",IDC_INFO1,15,71,258,12
+ LTEXT "Info2",IDC_INFO2,15,84,258,10
+ LTEXT "Info3",IDC_INFO3,15,97,258,12
+END
+
+IDD_ABOUT DIALOGEX 0, 0, 316, 159
+STYLE DS_SETFONT | DS_MODALFRAME | DS_3DLOOK | DS_FIXEDSYS | DS_CENTER |
+ WS_POPUP | WS_CAPTION
+EXSTYLE WS_EX_TOPMOST | WS_EX_TOOLWINDOW
+CAPTION
+"Traduction de Parasite Eve en Français - © 2003 Rpg-t - http://rpgplayer.uhrft.org"
+
+FONT 8, "MS Shell Dlg", 400, 0, 0x1
+BEGIN
+ DEFPUSHBUTTON "Créer",IDOK,259,6,50,14
+ PUSHBUTTON "Quitter",IDCANCEL,259,24,50,14
+ CONTROL "Inclure le sélecteur PAL/NTSC",IDC_PALFIX,"Button",
+ BS_AUTOCHECKBOX | WS_TABSTOP,6,141,114,14
+ CONTROL "",IDC_STATIC,"Static",SS_ETCHEDFRAME,1,1,314,157
+ LTEXT "Static",IDC_ABOUT,5,4,252,137
+ CONTROL 103,IDC_STATIC,"Static",SS_BITMAP,271,117,43,39
+END
+
+
+/////////////////////////////////////////////////////////////////////////////
+//
+// DESIGNINFO
+//
+
+#ifdef APSTUDIO_INVOKED
+GUIDELINES DESIGNINFO
+BEGIN
+ IDD_PROGRESS, DIALOG
+ BEGIN
+ LEFTMARGIN, 15
+ RIGHTMARGIN, 273
+ TOPMARGIN, 10
+ BOTTOMMARGIN, 109
+ END
+END
+#endif // APSTUDIO_INVOKED
+
+
+/////////////////////////////////////////////////////////////////////////////
+//
+// Bitmap
+//
+
+IDB_AYA BITMAP "Aya.bmp"
+#endif // French (France) resources
+/////////////////////////////////////////////////////////////////////////////
+
+
+
+#ifndef APSTUDIO_INVOKED
+/////////////////////////////////////////////////////////////////////////////
+//
+// Generated from the TEXTINCLUDE 3 resource.
+//
+
+
+/////////////////////////////////////////////////////////////////////////////
+#endif // not APSTUDIO_INVOKED
+
diff --git a/PE/reinsert.rc b/PE/reinsert.rc
index 576b53e..9926500 100644
--- a/PE/reinsert.rc
+++ b/PE/reinsert.rc
@@ -1,160 +1,160 @@
-// Microsoft Visual C++ generated resource script.
-//
-#include "reinsert-res.h"
-
-#define APSTUDIO_READONLY_SYMBOLS
-/////////////////////////////////////////////////////////////////////////////
-//
-// Generated from the TEXTINCLUDE 2 resource.
-//
-#include "afxres.h"
-
-/////////////////////////////////////////////////////////////////////////////
-#undef APSTUDIO_READONLY_SYMBOLS
-
-/////////////////////////////////////////////////////////////////////////////
-// English (U.S.) resources
-
-#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
-#ifdef _WIN32
-LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
-#pragma code_page(1252)
-#endif //_WIN32
-
-#ifdef APSTUDIO_INVOKED
-/////////////////////////////////////////////////////////////////////////////
-//
-// TEXTINCLUDE
-//
-
-1 TEXTINCLUDE
-BEGIN
- "reinsert-res.h\0"
-END
-
-2 TEXTINCLUDE
-BEGIN
- "#include ""afxres.h""\r\n"
- "\0"
-END
-
-3 TEXTINCLUDE
-BEGIN
- "\r\n"
- "\0"
-END
-
-#endif // APSTUDIO_INVOKED
-
-#endif // English (U.S.) resources
-/////////////////////////////////////////////////////////////////////////////
-
-
-/////////////////////////////////////////////////////////////////////////////
-// French (France) resources
-
-#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_FRA)
-#ifdef _WIN32
-LANGUAGE LANG_FRENCH, SUBLANG_FRENCH
-#pragma code_page(1252)
-#endif //_WIN32
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Icon
-//
-
-// Icon with lowest ID value placed first to ensure application icon
-// remains consistent on all systems.
-IDI_ICON ICON "Aya.ico"
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Version
-//
-
-VS_VERSION_INFO VERSIONINFO
- FILEVERSION 1,0,0,0
- PRODUCTVERSION 1,0,0,0
- FILEFLAGSMASK 0x17L
-#ifdef _DEBUG
- FILEFLAGS 0x1L
-#else
- FILEFLAGS 0x0L
-#endif
- FILEOS 0x4L
- FILETYPE 0x1L
- FILESUBTYPE 0x0L
-BEGIN
- BLOCK "StringFileInfo"
- BEGIN
- BLOCK "040c04b0"
- BEGIN
- VALUE "Comments", "Programme de réinsertion pour Parasite Eve - Commentaires"
- VALUE "CompanyName", "NOBIS"
- VALUE "FileDescription", "Programme de réinsertion pour Parasite Eve"
- VALUE "FileVersion", "1, 0, 0, 0"
- VALUE "InternalName", "reinsert"
- VALUE "LegalCopyright", "Copyright (C) 2003 Nicolas ""Pixel"" Noble"
- VALUE "OriginalFilename", "reinsert.rc"
- VALUE "ProductName", " reinsert"
- VALUE "ProductVersion", "1, 0, 0, 0"
- END
- END
- BLOCK "VarFileInfo"
- BEGIN
- VALUE "Translation", 0x40c, 1200
- END
-END
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// Dialog
-//
-
-IDD_ABOUT DIALOGEX 0, 0, 209, 68
-STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION |
- WS_SYSMENU
-CAPTION "Patch en cours..."
-FONT 8, "MS Shell Dlg", 400, 0, 0x1
-BEGIN
- CONTROL "",IDC_FILLOUT,"Static",SS_ETCHEDFRAME,7,30,195,31
- CONTROL "",IDC_FILLIN,"Static",SS_GRAYRECT,7,25,181,20
- LTEXT "Progression:",IDC_BLAHBLAH,19,17,132,10
-END
-
-
-/////////////////////////////////////////////////////////////////////////////
-//
-// DESIGNINFO
-//
-
-#ifdef APSTUDIO_INVOKED
-GUIDELINES DESIGNINFO
-BEGIN
- IDD_ABOUT, DIALOG
- BEGIN
- LEFTMARGIN, 7
- RIGHTMARGIN, 202
- TOPMARGIN, 7
- BOTTOMMARGIN, 61
- END
-END
-#endif // APSTUDIO_INVOKED
-
-#endif // French (France) resources
-/////////////////////////////////////////////////////////////////////////////
-
-
-
-#ifndef APSTUDIO_INVOKED
-/////////////////////////////////////////////////////////////////////////////
-//
-// Generated from the TEXTINCLUDE 3 resource.
-//
-
-
-/////////////////////////////////////////////////////////////////////////////
-#endif // not APSTUDIO_INVOKED
-
+// Microsoft Visual C++ generated resource script.
+//
+#include "reinsert-res.h"
+
+#define APSTUDIO_READONLY_SYMBOLS
+/////////////////////////////////////////////////////////////////////////////
+//
+// Generated from the TEXTINCLUDE 2 resource.
+//
+#include "afxres.h"
+
+/////////////////////////////////////////////////////////////////////////////
+#undef APSTUDIO_READONLY_SYMBOLS
+
+/////////////////////////////////////////////////////////////////////////////
+// English (U.S.) resources
+
+#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
+#ifdef _WIN32
+LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
+#pragma code_page(1252)
+#endif //_WIN32
+
+#ifdef APSTUDIO_INVOKED
+/////////////////////////////////////////////////////////////////////////////
+//
+// TEXTINCLUDE
+//
+
+1 TEXTINCLUDE
+BEGIN
+ "reinsert-res.h\0"
+END
+
+2 TEXTINCLUDE
+BEGIN
+ "#include ""afxres.h""\r\n"
+ "\0"
+END
+
+3 TEXTINCLUDE
+BEGIN
+ "\r\n"
+ "\0"
+END
+
+#endif // APSTUDIO_INVOKED
+
+#endif // English (U.S.) resources
+/////////////////////////////////////////////////////////////////////////////
+
+
+/////////////////////////////////////////////////////////////////////////////
+// French (France) resources
+
+#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_FRA)
+#ifdef _WIN32
+LANGUAGE LANG_FRENCH, SUBLANG_FRENCH
+#pragma code_page(1252)
+#endif //_WIN32
+
+/////////////////////////////////////////////////////////////////////////////
+//
+// Icon
+//
+
+// Icon with lowest ID value placed first to ensure application icon
+// remains consistent on all systems.
+IDI_ICON ICON "Aya.ico"
+
+/////////////////////////////////////////////////////////////////////////////
+//
+// Version
+//
+
+VS_VERSION_INFO VERSIONINFO
+ FILEVERSION 1,0,0,0
+ PRODUCTVERSION 1,0,0,0
+ FILEFLAGSMASK 0x17L
+#ifdef _DEBUG
+ FILEFLAGS 0x1L
+#else
+ FILEFLAGS 0x0L
+#endif
+ FILEOS 0x4L
+ FILETYPE 0x1L
+ FILESUBTYPE 0x0L
+BEGIN
+ BLOCK "StringFileInfo"
+ BEGIN
+ BLOCK "040c04b0"
+ BEGIN
+ VALUE "Comments", "Programme de réinsertion pour Parasite Eve - Commentaires"
+ VALUE "CompanyName", "NOBIS"
+ VALUE "FileDescription", "Programme de réinsertion pour Parasite Eve"
+ VALUE "FileVersion", "1, 0, 0, 0"
+ VALUE "InternalName", "reinsert"
+ VALUE "LegalCopyright", "Copyright (C) 2003 Nicolas ""Pixel"" Noble"
+ VALUE "OriginalFilename", "reinsert.rc"
+ VALUE "ProductName", " reinsert"
+ VALUE "ProductVersion", "1, 0, 0, 0"
+ END
+ END
+ BLOCK "VarFileInfo"
+ BEGIN
+ VALUE "Translation", 0x40c, 1200
+ END
+END
+
+
+/////////////////////////////////////////////////////////////////////////////
+//
+// Dialog
+//
+
+IDD_ABOUT DIALOGEX 0, 0, 209, 68
+STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION |
+ WS_SYSMENU
+CAPTION "Patch en cours..."
+FONT 8, "MS Shell Dlg", 400, 0, 0x1
+BEGIN
+ CONTROL "",IDC_FILLOUT,"Static",SS_ETCHEDFRAME,7,30,195,31
+ CONTROL "",IDC_FILLIN,"Static",SS_GRAYRECT,7,25,181,20
+ LTEXT "Progression:",IDC_BLAHBLAH,19,17,132,10
+END
+
+
+/////////////////////////////////////////////////////////////////////////////
+//
+// DESIGNINFO
+//
+
+#ifdef APSTUDIO_INVOKED
+GUIDELINES DESIGNINFO
+BEGIN
+ IDD_ABOUT, DIALOG
+ BEGIN
+ LEFTMARGIN, 7
+ RIGHTMARGIN, 202
+ TOPMARGIN, 7
+ BOTTOMMARGIN, 61
+ END
+END
+#endif // APSTUDIO_INVOKED
+
+#endif // French (France) resources
+/////////////////////////////////////////////////////////////////////////////
+
+
+
+#ifndef APSTUDIO_INVOKED
+/////////////////////////////////////////////////////////////////////////////
+//
+// Generated from the TEXTINCLUDE 3 resource.
+//
+
+
+/////////////////////////////////////////////////////////////////////////////
+#endif // not APSTUDIO_INVOKED
+