diff --git a/converter/DeNotchConverter.sln b/converter/DeNotchConverter.sln new file mode 100644 index 000000000..c90aaa4fc --- /dev/null +++ b/converter/DeNotchConverter.sln @@ -0,0 +1,34 @@ + +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DeNotchConverter", "DeNotchConverter.vcxproj", "{A6F31DB3-6F2F-413B-ACAC-8E24A6C8B38A}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ZLib", "..\VC2010\ZLib.vcxproj", "{F6F43A78-816D-4C37-A07B-68BED529273A}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Debug|x64 = Debug|x64 + Release|Win32 = Release|Win32 + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A6F31DB3-6F2F-413B-ACAC-8E24A6C8B38A}.Debug|Win32.ActiveCfg = Debug|Win32 + {A6F31DB3-6F2F-413B-ACAC-8E24A6C8B38A}.Debug|Win32.Build.0 = Debug|Win32 + {A6F31DB3-6F2F-413B-ACAC-8E24A6C8B38A}.Debug|x64.ActiveCfg = Debug|Win32 + {A6F31DB3-6F2F-413B-ACAC-8E24A6C8B38A}.Release|Win32.ActiveCfg = Release|Win32 + {A6F31DB3-6F2F-413B-ACAC-8E24A6C8B38A}.Release|Win32.Build.0 = Release|Win32 + {A6F31DB3-6F2F-413B-ACAC-8E24A6C8B38A}.Release|x64.ActiveCfg = Release|Win32 + {F6F43A78-816D-4C37-A07B-68BED529273A}.Debug|Win32.ActiveCfg = Debug|Win32 + {F6F43A78-816D-4C37-A07B-68BED529273A}.Debug|Win32.Build.0 = Debug|Win32 + {F6F43A78-816D-4C37-A07B-68BED529273A}.Debug|x64.ActiveCfg = Debug|x64 + {F6F43A78-816D-4C37-A07B-68BED529273A}.Debug|x64.Build.0 = Debug|x64 + {F6F43A78-816D-4C37-A07B-68BED529273A}.Release|Win32.ActiveCfg = Release|Win32 + {F6F43A78-816D-4C37-A07B-68BED529273A}.Release|Win32.Build.0 = Release|Win32 + {F6F43A78-816D-4C37-A07B-68BED529273A}.Release|x64.ActiveCfg = Release|x64 + {F6F43A78-816D-4C37-A07B-68BED529273A}.Release|x64.Build.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/converter/DeNotchConverter.vcxproj b/converter/DeNotchConverter.vcxproj new file mode 100644 index 000000000..6ca8e55fa --- /dev/null +++ b/converter/DeNotchConverter.vcxproj @@ -0,0 +1,89 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + {A6F31DB3-6F2F-413B-ACAC-8E24A6C8B38A} + DeNotchConverter + + + + Application + true + MultiByte + + + Application + false + true + MultiByte + + + + + + + + + + + + + + + Level3 + Disabled + ../zlib-1.2.5 + + + true + ws2_32.lib;%(AdditionalDependencies) + + + + + Level3 + MaxSpeed + true + true + ../zlib-1.2.5 + + + true + true + true + ws2_32.lib;%(AdditionalDependencies) + + + + + + + + + + + + + + + + + + + + {f6f43a78-816d-4c37-a07b-68bed529273a} + + + + + + \ No newline at end of file diff --git a/converter/DeNotchConverter.vcxproj.filters b/converter/DeNotchConverter.vcxproj.filters new file mode 100644 index 000000000..939174c13 --- /dev/null +++ b/converter/DeNotchConverter.vcxproj.filters @@ -0,0 +1,54 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hpp;hxx;hm;inl;inc;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + Source Files + + + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + Header Files + + + \ No newline at end of file diff --git a/converter/DeNotchConverter.vcxproj.user b/converter/DeNotchConverter.vcxproj.user new file mode 100644 index 000000000..695b5c78b --- /dev/null +++ b/converter/DeNotchConverter.vcxproj.user @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/converter/clean.bat b/converter/clean.bat new file mode 100644 index 000000000..dfc7a6777 --- /dev/null +++ b/converter/clean.bat @@ -0,0 +1,25 @@ +del *.ncb +del *.ilk +del *.lib +del *.exp +del *.map +del *.pdb +del *.bsc +del *.sdf +del *.opensdf /AH +del *.insprc +del *.aps +del applog.txt +del *.suo /AH +del debug\*.* /Q +del release\*.* /Q +del x64\*.* /Q +del "My Inspector Results"\*.* /Q +del ipch\*.* /Q +rd release /S /Q +rd debug /S /Q +rd ipch /S /Q +rd x64 /Q +rd "My Inspector Results" /Q + +pause \ No newline at end of file diff --git a/converter/source/printdir.c b/converter/source/printdir.c index 7216413be..d163be380 100644 --- a/converter/source/printdir.c +++ b/converter/source/printdir.c @@ -1,3 +1,5 @@ +#if 0 + /* list contents of a directory */ #include #include @@ -50,3 +52,6 @@ int main (int argc, char *argv[]) { } return EXIT_SUCCESS; } + + +#endif \ No newline at end of file