diff --git a/Domito.sln b/Domito.sln index 8394ec1..0bb66ce 100644 --- a/Domito.sln +++ b/Domito.sln @@ -3,7 +3,29 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.6.33723.286 MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Domito", "src\Domito.vcxproj", "{949657C4-92F7-48A5-90DD-02B4709AA6BF}" +EndProject Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Debug|x64 = Debug|x64 + Release|ARM64 = Release|ARM64 + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {949657C4-92F7-48A5-90DD-02B4709AA6BF}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {949657C4-92F7-48A5-90DD-02B4709AA6BF}.Debug|ARM64.Build.0 = Debug|ARM64 + {949657C4-92F7-48A5-90DD-02B4709AA6BF}.Debug|ARM64.Deploy.0 = Debug|ARM64 + {949657C4-92F7-48A5-90DD-02B4709AA6BF}.Debug|x64.ActiveCfg = Debug|x64 + {949657C4-92F7-48A5-90DD-02B4709AA6BF}.Debug|x64.Build.0 = Debug|x64 + {949657C4-92F7-48A5-90DD-02B4709AA6BF}.Debug|x64.Deploy.0 = Debug|x64 + {949657C4-92F7-48A5-90DD-02B4709AA6BF}.Release|ARM64.ActiveCfg = Release|ARM64 + {949657C4-92F7-48A5-90DD-02B4709AA6BF}.Release|ARM64.Build.0 = Release|ARM64 + {949657C4-92F7-48A5-90DD-02B4709AA6BF}.Release|ARM64.Deploy.0 = Release|ARM64 + {949657C4-92F7-48A5-90DD-02B4709AA6BF}.Release|x64.ActiveCfg = Release|x64 + {949657C4-92F7-48A5-90DD-02B4709AA6BF}.Release|x64.Build.0 = Release|x64 + {949657C4-92F7-48A5-90DD-02B4709AA6BF}.Release|x64.Deploy.0 = Release|x64 + EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection diff --git a/src/Domito.inf b/src/Domito.inf new file mode 100644 index 0000000..f03d1ec --- /dev/null +++ b/src/Domito.inf @@ -0,0 +1,34 @@ +; +; Domito.inf +; + +[Version] +Signature="$WINDOWS NT$" +Class=System +ClassGuid={4d36e97d-e325-11ce-bfc1-08002be10318} +Provider=%ManufacturerName% +DriverVer= +CatalogFile=Domito.cat +PnpLockdown=1 + +;This template is supported for OS version 17763 (Windows 10 version 1809) and after. +;For Windows OS prior to Windows 10 1809 set DefaultDestDir = 12 +[DestinationDirs] +DefaultDestDir = 13 + + +[SourceDisksNames] +1 = %DiskName%,,,"" + +[SourceDisksFiles] + + +[Manufacturer] +%ManufacturerName%=Standard,NT$ARCH$ + +[Standard.NT$ARCH$] + + +[Strings] +ManufacturerName="" ;TODO: Replace with your manufacturer name +DiskName="Domito Source Disk" diff --git a/src/Domito.vcxproj b/src/Domito.vcxproj new file mode 100644 index 0000000..c90c4a9 --- /dev/null +++ b/src/Domito.vcxproj @@ -0,0 +1,95 @@ + + + + + Debug + x64 + + + Release + x64 + + + Debug + ARM64 + + + Release + ARM64 + + + + {949657C4-92F7-48A5-90DD-02B4709AA6BF} + {dd38f7fc-d7bd-488b-9242-7d8754cde80d} + v4.5 + 12.0 + Debug + x64 + Domito + + + + Windows10 + true + WindowsKernelModeDriver10.0 + Driver + WDM + + + Windows10 + false + WindowsKernelModeDriver10.0 + Driver + WDM + + + Windows10 + true + WindowsKernelModeDriver10.0 + Driver + WDM + + + Windows10 + false + WindowsKernelModeDriver10.0 + Driver + WDM + + + + + + + + + + + DbgengKernelDebugger + + + DbgengKernelDebugger + + + DbgengKernelDebugger + + + DbgengKernelDebugger + + + + sha256 + + + + + sha256 + + + + + + + + + \ No newline at end of file diff --git a/src/Domito.vcxproj.filters b/src/Domito.vcxproj.filters new file mode 100644 index 0000000..99cea20 --- /dev/null +++ b/src/Domito.vcxproj.filters @@ -0,0 +1,21 @@ + + + + + {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 + + + {8E41214B-6785-4CFE-B992-037D68949A14} + inf;inv;inx;mof;mc; + + + \ No newline at end of file