diff --git a/src/FileTypeDDS/FileTypeDDS.sln b/src/FileTypeDDS/FileTypeDDS.sln new file mode 100644 index 0000000..a12a48f --- /dev/null +++ b/src/FileTypeDDS/FileTypeDDS.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2013 +VisualStudioVersion = 12.0.40629.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FileTypeDDS", "FileTypeDDS\FileTypeDDS.vcxproj", "{AEC443D7-D4C8-4191-A09A-7CCE99CD1F90}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Win32 = Debug|Win32 + Release|Win32 = Release|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {AEC443D7-D4C8-4191-A09A-7CCE99CD1F90}.Debug|Win32.ActiveCfg = Debug|Win32 + {AEC443D7-D4C8-4191-A09A-7CCE99CD1F90}.Debug|Win32.Build.0 = Debug|Win32 + {AEC443D7-D4C8-4191-A09A-7CCE99CD1F90}.Release|Win32.ActiveCfg = Release|Win32 + {AEC443D7-D4C8-4191-A09A-7CCE99CD1F90}.Release|Win32.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/src/FileTypeDDS/FileTypeDDS/AssemblyInfo.cpp b/src/FileTypeDDS/FileTypeDDS/AssemblyInfo.cpp new file mode 100644 index 0000000..bbafeb5 --- /dev/null +++ b/src/FileTypeDDS/FileTypeDDS/AssemblyInfo.cpp @@ -0,0 +1,38 @@ +#include "stdafx.h" + +using namespace System; +using namespace System::Reflection; +using namespace System::Runtime::CompilerServices; +using namespace System::Runtime::InteropServices; +using namespace System::Security::Permissions; + +// +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +// +[assembly:AssemblyTitleAttribute(L"FileTypeDDS")]; +[assembly:AssemblyDescriptionAttribute(L"")]; +[assembly:AssemblyConfigurationAttribute(L"")]; +[assembly:AssemblyCompanyAttribute(L"")]; +[assembly:AssemblyProductAttribute(L"FileTypeDDS")]; +[assembly:AssemblyCopyrightAttribute(L"Copyright (c) 2017")]; +[assembly:AssemblyTrademarkAttribute(L"")]; +[assembly:AssemblyCultureAttribute(L"")]; + +// +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the value or you can default the Revision and Build Numbers +// by using the '*' as shown below: + +[assembly:AssemblyVersionAttribute("1.0.*")]; + +[assembly:ComVisible(false)]; + +[assembly:CLSCompliantAttribute(true)]; \ No newline at end of file diff --git a/src/FileTypeDDS/FileTypeDDS/FileTypeDDS.cpp b/src/FileTypeDDS/FileTypeDDS/FileTypeDDS.cpp new file mode 100644 index 0000000..617d79a --- /dev/null +++ b/src/FileTypeDDS/FileTypeDDS/FileTypeDDS.cpp @@ -0,0 +1,5 @@ +#include "stdafx.h" + +// The class we are implementing +#include "FileTypeDDS.h" + diff --git a/src/FileTypeDDS/FileTypeDDS/FileTypeDDS.h b/src/FileTypeDDS/FileTypeDDS/FileTypeDDS.h new file mode 100644 index 0000000..453b2e8 --- /dev/null +++ b/src/FileTypeDDS/FileTypeDDS/FileTypeDDS.h @@ -0,0 +1,12 @@ +#pragma once + +using namespace System; + +namespace FileTypeDDS +{ + + public ref class Class1 + { + // TODO: Add your methods for this class here. + }; +} diff --git a/src/FileTypeDDS/FileTypeDDS/FileTypeDDS.vcxproj b/src/FileTypeDDS/FileTypeDDS/FileTypeDDS.vcxproj new file mode 100644 index 0000000..dc39625 --- /dev/null +++ b/src/FileTypeDDS/FileTypeDDS/FileTypeDDS.vcxproj @@ -0,0 +1,93 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + + {AEC443D7-D4C8-4191-A09A-7CCE99CD1F90} + v4.5 + ManagedCProj + FileTypeDDS + + + + DynamicLibrary + true + v120 + true + Unicode + + + DynamicLibrary + false + v120 + true + Unicode + + + + + + + + + + + + + true + + + false + + + + Level3 + Disabled + WIN32;_DEBUG;%(PreprocessorDefinitions) + Use + + + true + + + + + + Level3 + WIN32;NDEBUG;%(PreprocessorDefinitions) + Use + + + true + + + + + + + + + + + + + + + + + Create + Create + + + + + + \ No newline at end of file diff --git a/src/FileTypeDDS/FileTypeDDS/FileTypeDDS.vcxproj.filters b/src/FileTypeDDS/FileTypeDDS/FileTypeDDS.vcxproj.filters new file mode 100644 index 0000000..628ec9b --- /dev/null +++ b/src/FileTypeDDS/FileTypeDDS/FileTypeDDS.vcxproj.filters @@ -0,0 +1,36 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;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 + + + + + Header Files + + + Header Files + + + + + Source Files + + + Source Files + + + Source Files + + + \ No newline at end of file diff --git a/src/FileTypeDDS/FileTypeDDS/Stdafx.cpp b/src/FileTypeDDS/FileTypeDDS/Stdafx.cpp new file mode 100644 index 0000000..fd4f341 --- /dev/null +++ b/src/FileTypeDDS/FileTypeDDS/Stdafx.cpp @@ -0,0 +1 @@ +#include "stdafx.h" diff --git a/src/FileTypeDDS/FileTypeDDS/Stdafx.h b/src/FileTypeDDS/FileTypeDDS/Stdafx.h new file mode 100644 index 0000000..45dcbb0 --- /dev/null +++ b/src/FileTypeDDS/FileTypeDDS/Stdafx.h @@ -0,0 +1,3 @@ +#pragma once + +