From fcca69b106fd81fe4cfb252f3304895221c749e2 Mon Sep 17 00:00:00 2001 From: Yinghan Yang Date: Wed, 31 Jan 2024 23:19:07 -0800 Subject: Add Prm sample (#1094) * add prm sample * Update exclusions.csv * add owners for PRM and GPIO samples * fix INF --------- Co-authored-by: Yinghan Yang (307315) Co-authored-by: JakobL-MSFT <110699333+JakobL-MSFT@users.noreply.github.com> --- prm/PrmFunc/prmfuncsample.c | 511 ++++++++++++++++++++++++++++++ prm/PrmFunc/prmfuncsample.h | 64 ++++ prm/PrmFunc/prmfuncsample.inf | Bin 0 -> 2728 bytes prm/PrmFunc/prmfuncsample.vcxproj | 94 ++++++ prm/PrmFunc/prmfuncsample.vcxproj.Filters | 31 ++ prm/README.md | 17 + prm/prmsample.sln | 27 ++ 7 files changed, 744 insertions(+) create mode 100644 prm/PrmFunc/prmfuncsample.c create mode 100644 prm/PrmFunc/prmfuncsample.h create mode 100644 prm/PrmFunc/prmfuncsample.inf create mode 100644 prm/PrmFunc/prmfuncsample.vcxproj create mode 100644 prm/PrmFunc/prmfuncsample.vcxproj.Filters create mode 100644 prm/README.md create mode 100644 prm/prmsample.sln (limited to 'prm') diff --git a/prm/PrmFunc/prmfuncsample.c b/prm/PrmFunc/prmfuncsample.c new file mode 100644 index 00000000..c7eed1eb --- /dev/null +++ b/prm/PrmFunc/prmfuncsample.c @@ -0,0 +1,511 @@ +/*-- + +Copyright (c) Microsoft Corporation. All rights reserved. + + THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY + KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR + PURPOSE. + + +Module Name: + + PrmFuncSample.c + +Abstract: + + This module implements a sample that utilizes the + Windows PRM direct call interface. + +Environment: + + Kernel mode only. + +--*/ + +#include "prmfuncsample.h" + +// +// General client/class interfaces +// + +DRIVER_INITIALIZE DriverEntry; +EVT_WDF_DRIVER_DEVICE_ADD PrmFuncTestEvtDeviceAdd; + +#ifdef ALLOC_PRAGMA +#pragma alloc_text (INIT, DriverEntry) +#pragma alloc_text (PAGE, PrmFuncTestEvtDeviceAdd) +#pragma alloc_text (PAGE, PrmFuncTestEvtIoDeviceControl) +#endif + +HANDLE FileHandle = NULL; + +NTSTATUS +DriverEntry ( + _In_ PDRIVER_OBJECT DriverObject, + _In_ PUNICODE_STRING RegistryPath + ) + +/*++ + +Routine Description: + DriverEntry initializes the driver and is the first routine called by the + system after the driver is loaded. DriverEntry configures and creates a WDF driver + object. + . +Parameters Description: + + DriverObject - represents the instance of the function driver that is loaded + into memory. DriverObject is allocated by the system before the + driver is loaded, and it is released by the system after the system unloads + the function driver from memory. + + RegistryPath - represents the driver specific path in the Registry. + The function driver can use the path to store driver related data between + reboots. The path does not store hardware instance specific data. + +Return Value: + + STATUS_SUCCESS if successful, + STATUS_UNSUCCESSFUL otherwise. + +--*/ + +{ + WDF_DRIVER_CONFIG Config; + WDFDRIVER Driver; + NTSTATUS Status; + + KdPrint(("PRM Function Test Driver - Driver Framework Edition.\n")); + + WDF_DRIVER_CONFIG_INIT( + &Config, + PrmFuncTestEvtDeviceAdd); + + // + // Create a framework driver object to represent our driver. + // + + Status = WdfDriverCreate( + DriverObject, + RegistryPath, + WDF_NO_OBJECT_ATTRIBUTES, // Driver Attributes + &Config, // Driver Config Info + &Driver); + + if (!NT_SUCCESS(Status)) { + KdPrint(("WdfDriverCreate failed with status 0x%x\n", Status)); + return Status; + } + + return Status; +} + +NTSTATUS +PrmFuncTestEvtDeviceAdd ( + _In_ WDFDRIVER Driver, + _In_ PWDFDEVICE_INIT DeviceInit + ) + +/*++ + +Routine Description: + + ToasterEvtDeviceAdd is called by the framework in response to AddDevice + call from the PnP manager. We create and initialize a WDF device object to + represent a new instance of toaster device. + +Arguments: + + Driver - Handle to a framework driver object created in DriverEntry + + DeviceInit - Pointer to a framework-allocated WDFDEVICE_INIT structure. + +Return Value: + + NTSTATUS + +--*/ + +{ + NTSTATUS Status; + WDF_IO_QUEUE_CONFIG QueueConfig; + WDFDEVICE Device; + WDFQUEUE Queue; + WDF_FILEOBJECT_CONFIG FileConfig; + + UNREFERENCED_PARAMETER(Driver); + + PAGED_CODE(); + + KdPrint(("PrmFuncTestEvtDeviceAdd called\n")); + + // + // Initialize WDF_FILEOBJECT_CONFIG_INIT struct to tell the + // framework whether you are interested in handling Create, Close and + // Cleanup requests that gets genereate when an application or another + // kernel component opens an handle to the device. If you don't register, + // the framework default behaviour would be complete these requests + // with STATUS_SUCCESS. A driver might be interested in registering these + // events if it wants to do security validation and also wants to maintain + // per handle (fileobject) context. + // + + WDF_FILEOBJECT_CONFIG_INIT( + &FileConfig, + PrmFuncTestEvtDeviceFileCreate, + NULL, + NULL); + + FileConfig.FileObjectClass = WdfFileObjectNotRequired; + WdfDeviceInitSetFileObjectConfig( + DeviceInit, + &FileConfig, + WDF_NO_OBJECT_ATTRIBUTES); + + // + // Create a framework device object.This call will in turn create + // a WDM device object, attach to the lower stack, and set the + // appropriate flags and attributes. + // + + Status = WdfDeviceCreate(&DeviceInit, WDF_NO_OBJECT_ATTRIBUTES, &Device); + if (!NT_SUCCESS(Status)) { + KdPrint( ("WdfDeviceCreate failed with status code 0x%x\n", Status)); + return Status; + } + + // + // Tell the Framework that this device will need an interface + // + + Status = WdfDeviceCreateDeviceInterface( + Device, + (LPGUID) &GUID_DEVINTERFACE_PRMFUNCTEST, + NULL); + + if (!NT_SUCCESS (Status)) { + KdPrint( ("WdfDeviceCreateDeviceInterface failed 0x%x\n", Status)); + return Status; + } + + WDF_IO_QUEUE_CONFIG_INIT_DEFAULT_QUEUE(&QueueConfig, WdfIoQueueDispatchParallel); + QueueConfig.EvtIoDeviceControl = PrmFuncTestEvtIoDeviceControl; + Status = WdfIoQueueCreate( + Device, + &QueueConfig, + WDF_NO_OBJECT_ATTRIBUTES, + &Queue + ); + + if (!NT_SUCCESS (Status)) { + KdPrint( ("WdfIoQueueCreate failed 0x%x\n", Status)); + return Status; + } + + return Status; +} + +VOID +PrmFuncTestEvtDeviceFileCreate ( + _In_ WDFDEVICE Device, + _In_ WDFREQUEST Request, + _In_ WDFFILEOBJECT FileObject + ) + +/*++ + +Routine Description: + + The framework calls a driver's EvtDeviceFileCreate callback + when the framework receives an IRP_MJ_CREATE request. + The system sends this request when a user application opens the + device to perform an I/O operation, such as reading or writing to a device. + This callback is called in the context of the thread + that created the IRP_MJ_CREATE request. + +Arguments: + + Device - Handle to a framework device object. + FileObject - Pointer to fileobject that represents the open handle. + CreateParams - Parameters for create + +Return Value: + + NT status code + +--*/ + +{ + + PIRP Irp; + WDFIOTARGET IoTarget; + WDF_REQUEST_SEND_OPTIONS RequestSendOptions; + UNICODE_STRING FilePath; + OBJECT_ATTRIBUTES ObjA; + NTSTATUS Status; + IO_STATUS_BLOCK IoStatusBlock; + PWSTR DeviceNames; + + PAGED_CODE(); + + UNREFERENCED_PARAMETER(FileObject); + UNREFERENCED_PARAMETER(Device); + + KdPrint( ("PrmFuncTestEvtDeviceFileCreate %p\n", Device)); + + DeviceNames = NULL; + Irp = WdfRequestWdmGetIrp(Request); + if (Irp->RequestorMode == KernelMode) { + + // + // Forward the IRP if coming from kernel-mode + // + + IoTarget = WdfDeviceGetIoTarget(Device); + WdfRequestFormatRequestUsingCurrentType(Request); + WDF_REQUEST_SEND_OPTIONS_INIT( + &RequestSendOptions, + WDF_REQUEST_SEND_OPTION_SEND_AND_FORGET + ); + + WdfRequestSend(Request, IoTarget, &RequestSendOptions); + + } else { + Status = IoGetDeviceInterfaces( + &GUID_DEVINTERFACE_PRMFUNCTEST, + WdfDeviceWdmGetPhysicalDevice(Device), + 0, + &DeviceNames + ); + + if (NT_SUCCESS(Status)) { + if (DeviceNames == NULL || DeviceNames[0] == UNICODE_NULL) { + Status = STATUS_DEVICE_DOES_NOT_EXIST; + + } else { + RtlInitUnicodeString(&FilePath, DeviceNames); + InitializeObjectAttributes(&ObjA, + &FilePath, + OBJ_CASE_INSENSITIVE | OBJ_KERNEL_HANDLE, + NULL, + NULL); + + Status = ZwCreateFile(&FileHandle, + GENERIC_WRITE, + &ObjA, + &IoStatusBlock, + NULL, + FILE_ATTRIBUTE_NORMAL, + FILE_SHARE_WRITE, + FILE_OPEN_IF, + 0, + NULL, + 0); + } + } + + WdfRequestComplete(Request, Status); + } + + if (DeviceNames != NULL) { + ExFreePool(DeviceNames); + } + + return; +} + +VOID +PrmFuncTestEvtIoDeviceControl( + _In_ WDFQUEUE Queue, + _In_ WDFREQUEST Request, + _In_ size_t OutputBufferLength, + _In_ size_t InputBufferLength, + _In_ ULONG IoControlCode + ) + +/*++ + +Routine Description: + + This event is called when the framework receives IRP_MJ_DEVICE_CONTROL + requests from the system. + +Arguments: + + Queue - Handle to the framework queue object that is associated + with the I/O request. + Request - Handle to a framework request object. + + OutputBufferLength - length of the request's output buffer, + if an output buffer is available. + InputBufferLength - length of the request's input buffer, + if an input buffer is available. + + IoControlCode - the driver-defined or system-defined I/O control code + (IOCTL) that is associated with the request. + +Return Value: + + VOID + +--*/ + +{ + + ULONG BytesReturned; + PVOID InputBuffer; + PVOID OutputBuffer; + WDFMEMORY InputMemory; + WDFMEMORY OutputMemory; + size_t InputSize; + size_t OutputSize; + NTSTATUS Status; + PPRM_DIRECT_CALL_PARAMETERS TestParameters; + PPRM_TEST_RESULT PrmResult; + PRM_INTERFACE PrmInterface; + ULONG64 EfiStatus; + BOOLEAN Found; + + PAGED_CODE(); + + UNREFERENCED_PARAMETER(Queue); + + Status = STATUS_SUCCESS; + InputBuffer = NULL; + OutputBuffer = NULL; + BytesReturned = 0; + InputSize = 0; + OutputSize = 0; + + // + // VAlidate the input and output buffers + // + + if (InputBufferLength != 0) { + Status = WdfRequestRetrieveInputMemory(Request, &InputMemory); + if (!NT_SUCCESS(Status)) { + goto EvtIoDeviceControlEnd; + } + + InputBuffer = WdfMemoryGetBuffer(InputMemory, &InputSize); + } + + if (OutputBufferLength != 0) { + Status = WdfRequestRetrieveOutputMemory(Request, &OutputMemory); + if (!NT_SUCCESS(Status)) { + goto EvtIoDeviceControlEnd; + } + + OutputBuffer = WdfMemoryGetBuffer(OutputMemory, &OutputSize); + } + + // + // Use WdfRequestRetrieveInputBuffer and WdfRequestRetrieveOutputBuffer + // to get the request buffers. + // + + switch (IoControlCode) { + case IOCTL_PRMFUNCTEST_DIRECT_CALL_TEST: + if (InputSize < sizeof(PRM_DIRECT_CALL_PARAMETERS)) { + Status = STATUS_INVALID_PARAMETER; + break; + } + + if (OutputSize < sizeof(PRM_TEST_RESULT)) { + Status = STATUS_INVALID_PARAMETER; + break; + } + + TestParameters = (PPRM_DIRECT_CALL_PARAMETERS)InputBuffer; + PrmResult = (PPRM_TEST_RESULT)OutputBuffer; + + // + // Acquire the direct-call PRM interface, which is defined in + // prminterface.h. + // + // typedef struct _PRM_INTERFACE { + // ULONG Version; + // PPRM_UNLOCK_MODULE UnlockModule; + // PPRM_LOCK_MODULE LockModule; + // PPRM_INVOKE_HANDLER InvokeHandler; + // PPRM_QUERY_HANDLER QueryHandler; + // } PRM_INTERFACE, *PPRM_INTERFACE; + // + + Status = ExGetPrmInterface(1, &PrmInterface); + if (!NT_SUCCESS(Status)) { + break; + } + + // + // Lock the handler's PRM module to synchronize against any potential + // runtime update to the PRM module. + // + // N.B. Note that technically this is only needed if a series of PRM + // handlers need to be called transactionally (thus preventing + // interleaving of PRM module updates). However, we will do it here + // as an example of how it could be done. + // + + Status = PrmInterface.LockModule( + (LPGUID)&TestParameters->Guid); + + if (!NT_SUCCESS(Status)) { + break; + } + + // + // Query for the presence of the PRM handler. + // + + Status = PrmInterface.QueryHandler( + (LPGUID)&TestParameters->Guid, + &Found); + + if ((!NT_SUCCESS(Status)) || (Found == FALSE)) { + break; + } + + // + // Invoke the PRM handler + // + + Status = PrmInterface.InvokeHandler( + (LPGUID)&TestParameters->Guid, + TestParameters->ParameterBuffer, + 0, + &EfiStatus); + + if (!NT_SUCCESS(Status)) { + break; + } + + // + // Unlock the PRM module + // + // N.B. Note that technically this is only needed if a series of PRM + // handlers need to be called as part of transaction. However, we will + // do it here as an example of how it could be done. + // + + Status = PrmInterface.UnlockModule( + (LPGUID)&TestParameters->Guid); + + if (!NT_SUCCESS(Status)) { + break; + } + + PrmResult->Status = Status; + PrmResult->EfiStatus = EfiStatus; + Status = STATUS_SUCCESS; + BytesReturned = sizeof(PRM_TEST_RESULT); + break; + + default: + Status = STATUS_INVALID_DEVICE_REQUEST; + } + +EvtIoDeviceControlEnd: + WdfRequestCompleteWithInformation(Request, Status, BytesReturned); +} \ No newline at end of file diff --git a/prm/PrmFunc/prmfuncsample.h b/prm/PrmFunc/prmfuncsample.h new file mode 100644 index 00000000..117b008d --- /dev/null +++ b/prm/PrmFunc/prmfuncsample.h @@ -0,0 +1,64 @@ +/*++ + +Copyright (c) Microsoft Corporation. All rights reserved. + + THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY + KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR + PURPOSE. + +Module Name: + + prmfuncsample.h + +Environment: + + Kernel mode + +--*/ + +#if !defined(_PRMFUNCTEST_H_) +#define _PRMFUNCTEST_H_ + +#include +#include + +#define NTSTRSAFE_LIB +#include +#include +#include "prminterface.h" + +#define PRMFUNCTEST_POOL_TAG (ULONG) 'fmrP' + +DRIVER_INITIALIZE DriverEntry; + +EVT_WDF_DRIVER_DEVICE_ADD PrmFuncTestEvtDeviceAdd; +EVT_WDF_IO_QUEUE_IO_DEVICE_CONTROL PrmFuncTestEvtIoDeviceControl; +EVT_WDF_DEVICE_FILE_CREATE PrmFuncTestEvtDeviceFileCreate; + +DEFINE_GUID(GUID_DEVINTERFACE_PRMFUNCTEST, + 0x9f87349b, 0x4429, 0x4e4c, 0xb1, 0xf4, 0x30, 0x74, 0x99, 0x97, 0x0a, 0x1b); + +#define PRMFUNCTEST_IOCTL(_index_) \ + CTL_CODE (FILE_DEVICE_UNKNOWN, _index_, METHOD_BUFFERED, FILE_ANY_ACCESS) + +#define IOCTL_PRMFUNCTEST_DIRECT_CALL_TEST PRMFUNCTEST_IOCTL(0xF00) +#define PRM_PARAMETER_BUFFER_SIZE 308 + +typedef struct _PRM_TEST_PARAMETERS { + GUID Guid; + UCHAR ParameterBuffer[PRM_PARAMETER_BUFFER_SIZE]; +} PRM_TEST_PARAMETERS, *PPRM_TEST_PARAMETERS; + +typedef struct _PRM_DIRECT_CALL_PARAMETERS { + GUID Guid; + UCHAR ParameterBuffer[PRM_PARAMETER_BUFFER_SIZE]; +} PRM_DIRECT_CALL_PARAMETERS, *PPRM_DIRECT_CALL_PARAMETERS; + +typedef struct _PRM_TEST_RESULT { + NTSTATUS Status; + ULONG64 EfiStatus; + UCHAR Buffer[PRM_PARAMETER_BUFFER_SIZE]; +} PRM_TEST_RESULT, *PPRM_TEST_RESULT; + +#endif diff --git a/prm/PrmFunc/prmfuncsample.inf b/prm/PrmFunc/prmfuncsample.inf new file mode 100644 index 00000000..6dcce29f Binary files /dev/null and b/prm/PrmFunc/prmfuncsample.inf differ diff --git a/prm/PrmFunc/prmfuncsample.vcxproj b/prm/PrmFunc/prmfuncsample.vcxproj new file mode 100644 index 00000000..3cc3181d --- /dev/null +++ b/prm/PrmFunc/prmfuncsample.vcxproj @@ -0,0 +1,94 @@ + + + + + Debug + x64 + + + Release + x64 + + + + + Windows10 + False + Desktop + KMDF + WindowsKernelModeDriver10.0 + Driver + + + Windows10 + True + Desktop + KMDF + WindowsKernelModeDriver10.0 + Driver + + + + $(IntDir) + + + + + + + + + + * + true + $(InfArch) + true + .\$(IntDir)\prmfuncsample.inf + + + + prmfuncsample + + + prmfuncsample + + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ksguid.lib;$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\ntoskrnl.lib + + + true + Level4 + + + + + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ksguid.lib;$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\ntoskrnl.lib + + + true + Level4 + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/prm/PrmFunc/prmfuncsample.vcxproj.Filters b/prm/PrmFunc/prmfuncsample.vcxproj.Filters new file mode 100644 index 00000000..f8ca8c78 --- /dev/null +++ b/prm/PrmFunc/prmfuncsample.vcxproj.Filters @@ -0,0 +1,31 @@ + + + + + cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx;* + {E10CB9FB-4852-4353-85F5-667D4D2A13DD} + + + h;hpp;hxx;hm;inl;inc;xsd + {EC8940D8-5E2B-49AB-AB85-7CABCAE698D1} + + + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms;man;xml + {42A1FDF4-6DB4-41B2-9423-8002A20D1B0D} + + + inf;inv;inx;mof;mc; + {FD9F921C-D1EF-421B-A692-F23423B32E64} + + + + + Source Files + + + + + Header Files + + + \ No newline at end of file diff --git a/prm/README.md b/prm/README.md new file mode 100644 index 00000000..3475d78e --- /dev/null +++ b/prm/README.md @@ -0,0 +1,17 @@ +--- +page_type: sample +description: "Demonstrates how to write a KMDF driver to utlize the Windows Platform Runtime Mechanism (PRM) direct-call interface." +languages: +- cpp +products: +- windows +- windows-wdk +--- + +# PrmFunc sample application + +The *PRMFunc* sample demonstrates how to write a KMDF driver to utlize the Windows Platform Runtime Mechanism (PRM) direct-call interface. + +## Related topics + +[Platform Runtime Mechanism Specification](https://uefi.org/sites/default/files/resources/Platform%20Runtime%20Mechanism%20-%20with%20legal%20notice.pdf/) diff --git a/prm/prmsample.sln b/prm/prmsample.sln new file mode 100644 index 00000000..9bee6614 --- /dev/null +++ b/prm/prmsample.sln @@ -0,0 +1,27 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.9.34414.90 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "prmfuncsample", "prmfunc\prmfuncsample.vcxproj", "{A80FE9DD-C140-40F6-A3F4-55A2A55BFAD4}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Release|x64 = Release|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A80FE9DD-C140-40F6-A3F4-55A2A55BFAD4}.Debug|x64.ActiveCfg = Debug|x64 + {A80FE9DD-C140-40F6-A3F4-55A2A55BFAD4}.Debug|x64.Build.0 = Debug|x64 + {A80FE9DD-C140-40F6-A3F4-55A2A55BFAD4}.Debug|x64.Deploy.0 = Debug|x64 + {A80FE9DD-C140-40F6-A3F4-55A2A55BFAD4}.Release|x64.ActiveCfg = Release|x64 + {A80FE9DD-C140-40F6-A3F4-55A2A55BFAD4}.Release|x64.Build.0 = Release|x64 + {A80FE9DD-C140-40F6-A3F4-55A2A55BFAD4}.Release|x64.Deploy.0 = Release|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {E71959C9-929E-4552-B267-ED7ABEE1B330} + EndGlobalSection +EndGlobal -- cgit v1.3.1 From 4757e838c7703d4a5edc1eed6a80b916dc40461d Mon Sep 17 00:00:00 2001 From: Yinghan Yang Date: Thu, 1 Feb 2024 10:59:00 -0800 Subject: Fix PRM sample driver INF targetOsVersion (#1096) fix INF target OS for Ge only PRM sample Co-authored-by: Yinghan Yang (307315) --- prm/PrmFunc/prmfuncsample.inf | Bin 2728 -> 2780 bytes 1 file changed, 0 insertions(+), 0 deletions(-) (limited to 'prm') diff --git a/prm/PrmFunc/prmfuncsample.inf b/prm/PrmFunc/prmfuncsample.inf index 6dcce29f..bdd78384 100644 Binary files a/prm/PrmFunc/prmfuncsample.inf and b/prm/PrmFunc/prmfuncsample.inf differ -- cgit v1.3.1 From 1ad137b6e5a762d3dc0ea0e0bd95f4e46e2dd329 Mon Sep 17 00:00:00 2001 From: JakobL-MSFT <110699333+JakobL-MSFT@users.noreply.github.com> Date: Tue, 6 Feb 2024 18:01:44 -0800 Subject: Initial Support for WDK NuGet Experiment. Take 3 (#1102) * Add parent directory file for NuGet import support * fix directory.build.props file * Checked in a comment with baseline. Also small fix to make sure we use GE InfVerif flags and Exclusions.csv * Remove references to path which refer older vars * Remove stale variable path from mincore.lib * remove references to stale variale from vhidmimium * remove stale reference from ddproxy * remove stale reference in inspect.vcxproj * Remove stale path reference in msnmntr.vcxproj * Remove stale path reference to stmedit.vcxproj * Remove stale path from echosrv.vcxproj * remove stale path mscorelib SingleComponentSingleStateUm.vcxproj * remove stale path * Move GitHub check up front * Replace correct value for the wpprecorderum * Removed the stale references for the um libs * correct the reference path for libs simplemedia * Correct the reference path for vccomsup * Correct the reference path for sdk lib path * added reference to the kit shared inc path * added reference to the kit shared inc path * Build-SampleSet: Let determination of NuGet packages be based on a folder .\packages rather than the .\packages.config file * added reference to the kit shared inc path * Updated PACKAGERESTORE_README.md with results from Prashant's recent fixes. Moves us 37 failures to 19 failures. * Rewrite how to get NuGet packages via EEAP or MSFTNuGet * Minor edits to Building-Locally.md * added reference to the kit shared inc path * Move forward to ge_release 26052. This fixes samples .\prm * added reference to the kit shared inc path * Move forward to ge_release 26052. This fixes samples .\prm. Update to .\Building-Locally.md * added reference to the kit shared inc path * added reference to the kit shared inc path * added reference to the kit shared inc path * added reference to the kit shared inc path * added reference to the kit shared inc path * added reference to the kit shared inc path * Update NuGet build instructions and PACKAGERESTORE_README.md * Reset Building-Locally.md and remote PACKAGERESTORE_README.md * Add reference to wdk um include path * Add reference to wdk um include path * Add reference to wdk um include path * Provided full path to wmimofck.exe to correctly resolve * Fix the path resolution for wmimofexe * Correct the wmimfck path resolution * Add NuGet arm64 support --------- Co-authored-by: Prashant Chahar Co-authored-by: Jakob Lichtenberg --- Directory.Build.props | 9 ++++----- packages.config | 2 ++ prm/PrmFunc/prmfuncsample.vcxproj | 3 ++- storage/class/classpnp/src/classpnp.vcxproj | 2 +- storage/msdsm/src/SampleDSM.vcxproj | 4 ++-- usb/UcmCxUcsi/UcmCxUcsi.vcxproj | 2 +- .../UcmUcsiAcpiSample/UcmUcsiAcpiSample.vcxproj | 4 ++++ video/KMDOD/Sample/SampleDisplay.vcxproj | 8 ++++---- wmi/wmiacpi/acpimof.vcxproj | 2 +- wmi/wmisamp/WmiSamp.vcxproj | 1 + 10 files changed, 22 insertions(+), 15 deletions(-) (limited to 'prm') diff --git a/Directory.Build.props b/Directory.Build.props index 19d85cd4..2aab8266 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,8 +1,7 @@ - - + + + + - diff --git a/packages.config b/packages.config index 55fd7b63..0976b9f0 100644 --- a/packages.config +++ b/packages.config @@ -2,5 +2,7 @@ + + diff --git a/prm/PrmFunc/prmfuncsample.vcxproj b/prm/PrmFunc/prmfuncsample.vcxproj index 3cc3181d..55465018 100644 --- a/prm/PrmFunc/prmfuncsample.vcxproj +++ b/prm/PrmFunc/prmfuncsample.vcxproj @@ -61,6 +61,7 @@ Level4 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(KIT_SHARED_INC_PATH_WDK) @@ -72,7 +73,7 @@ Level4 - %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(KIT_SHARED_INC_PATH_WDK) diff --git a/storage/class/classpnp/src/classpnp.vcxproj b/storage/class/classpnp/src/classpnp.vcxproj index 4b092509..3b4316b1 100644 --- a/storage/class/classpnp/src/classpnp.vcxproj +++ b/storage/class/classpnp/src/classpnp.vcxproj @@ -314,7 +314,7 @@ - + diff --git a/storage/msdsm/src/SampleDSM.vcxproj b/storage/msdsm/src/SampleDSM.vcxproj index 5387d218..fe3104b8 100644 --- a/storage/msdsm/src/SampleDSM.vcxproj +++ b/storage/msdsm/src/SampleDSM.vcxproj @@ -285,7 +285,7 @@ - + @@ -294,7 +294,7 @@ - + diff --git a/usb/UcmCxUcsi/UcmCxUcsi.vcxproj b/usb/UcmCxUcsi/UcmCxUcsi.vcxproj index 66355942..35b53adb 100644 --- a/usb/UcmCxUcsi/UcmCxUcsi.vcxproj +++ b/usb/UcmCxUcsi/UcmCxUcsi.vcxproj @@ -90,7 +90,7 @@ pch.h - %(AdditionalIncludeDirectories);. + %(AdditionalIncludeDirectories);.;$(KIT_SHARED_INC_PATH_WDK) true true trace.h diff --git a/usb/UcmUcsiAcpiSample/UcmUcsiAcpiSample/UcmUcsiAcpiSample.vcxproj b/usb/UcmUcsiAcpiSample/UcmUcsiAcpiSample/UcmUcsiAcpiSample.vcxproj index 136932e7..610fcc44 100644 --- a/usb/UcmUcsiAcpiSample/UcmUcsiAcpiSample/UcmUcsiAcpiSample.vcxproj +++ b/usb/UcmUcsiAcpiSample/UcmUcsiAcpiSample/UcmUcsiAcpiSample.vcxproj @@ -86,6 +86,7 @@ pch.h 4100;4189;5208;%(DisableSpecificWarnings) false + %(AdditionalIncludeDirectories);$(KIT_SHARED_INC_PATH_WDK) $(DDK_LIB_PATH)\UcmUcsi\1.0\UcmUcsiCxStub.lib;%(AdditionalDependencies) @@ -99,6 +100,7 @@ true 4100;4189;5208;%(DisableSpecificWarnings) false + %(AdditionalIncludeDirectories);$(KIT_SHARED_INC_PATH_WDK) $(DDK_LIB_PATH)\UcmUcsi\1.0\UcmUcsiCxStub.lib;%(AdditionalDependencies) @@ -111,6 +113,7 @@ true 4100;4189;5208;%(DisableSpecificWarnings) + %(AdditionalIncludeDirectories);$(KIT_SHARED_INC_PATH_WDK) $(DDK_LIB_PATH)\UcmUcsi\1.0\UcmUcsiCxStub.lib;%(AdditionalDependencies) @@ -123,6 +126,7 @@ true 4100;4189;5208;%(DisableSpecificWarnings) + %(AdditionalIncludeDirectories);$(KIT_SHARED_INC_PATH_WDK) $(DDK_LIB_PATH)\UcmUcsi\1.0\UcmUcsiCxStub.lib;%(AdditionalDependencies) diff --git a/video/KMDOD/Sample/SampleDisplay.vcxproj b/video/KMDOD/Sample/SampleDisplay.vcxproj index 30a147c5..6dfa431c 100644 --- a/video/KMDOD/Sample/SampleDisplay.vcxproj +++ b/video/KMDOD/Sample/SampleDisplay.vcxproj @@ -83,7 +83,7 @@ %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH) - %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH) + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH);$(KIT_SHARED_INC_PATH_WDK) %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH) @@ -97,7 +97,7 @@ %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH) - %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH) + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH);$(KIT_SHARED_INC_PATH_WDK) %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH) @@ -111,7 +111,7 @@ %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH) - %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH) + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH);$(KIT_SHARED_INC_PATH_WDK) %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH) @@ -125,7 +125,7 @@ %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH) - %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH) + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH);$(KIT_SHARED_INC_PATH_WDK) %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH) diff --git a/wmi/wmiacpi/acpimof.vcxproj b/wmi/wmiacpi/acpimof.vcxproj index 15803d3c..2d4225e2 100644 --- a/wmi/wmiacpi/acpimof.vcxproj +++ b/wmi/wmiacpi/acpimof.vcxproj @@ -181,7 +181,7 @@ - + diff --git a/wmi/wmisamp/WmiSamp.vcxproj b/wmi/wmisamp/WmiSamp.vcxproj index a0ae2b2a..d4b3ff34 100644 --- a/wmi/wmisamp/WmiSamp.vcxproj +++ b/wmi/wmisamp/WmiSamp.vcxproj @@ -87,6 +87,7 @@ .\$(IntDir)\wmisamp.x .\$(IntDir)\htm true + $(WmimofckToolPath) -- cgit v1.3.1 From b2476b64dbff3fe47698dc4d3d449cc141605264 Mon Sep 17 00:00:00 2001 From: JakobL-MSFT <110699333+JakobL-MSFT@users.noreply.github.com> Date: Tue, 6 Feb 2024 19:56:14 -0800 Subject: Add signing policy for prm sample (#1103) --- prm/PrmFunc/prmfuncsample.vcxproj | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'prm') diff --git a/prm/PrmFunc/prmfuncsample.vcxproj b/prm/PrmFunc/prmfuncsample.vcxproj index 55465018..730402d2 100644 --- a/prm/PrmFunc/prmfuncsample.vcxproj +++ b/prm/PrmFunc/prmfuncsample.vcxproj @@ -10,6 +10,9 @@ x64 + + {A80FE9DD-C140-40F6-A3F4-55A2A55BFAD4} + Windows10 @@ -63,6 +66,9 @@ %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(KIT_SHARED_INC_PATH_WDK) + + sha256 + @@ -75,6 +81,9 @@ %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(KIT_SHARED_INC_PATH_WDK) + + sha256 + -- cgit v1.3.1 From cff1465ff184c6e89d43083f8430040e72d69283 Mon Sep 17 00:00:00 2001 From: Adonais Romero González Date: Mon, 19 Feb 2024 14:26:14 -0800 Subject: Add ARM64 as target platform on multiple samples (#1104) * Add ARM64 as target platform on multiple samples * Remove ARM64 from WFPSampler temporarily --------- Co-authored-by: Jakob Lichtenberg (170957) --- avstream/avscamera/Package/package.VcxProj | 30 ++++- avstream/avscamera/avscamera.sln | 16 ++- avstream/avscamera/sys/AvsCamera.vcxproj | 102 ++++++++++++++- avstream/avssamp/avssamp.sln | 8 +- avstream/avssamp/avssamp.vcxproj | 90 ++++++++++++- avstream/sampledevicemft/SampleDeviceMft.sln | 8 +- avstream/sampledevicemft/multipinmft.vcxproj | 74 ++++++++++- avstream/samplemft0/Package/package.vcxproj | 20 ++- avstream/samplemft0/SampleMft0.sln | 12 +- avstream/samplemft0/SampleMft0.vcxproj | 26 +++- bluetooth/bthecho/bthcli/app/BthEcho.vcxproj | 82 +++++++++++- .../bthecho/bthcli/sys/BthEchoSampleCli.vcxproj | 88 ++++++++++++- bluetooth/bthecho/bthecho.sln | 24 +++- bluetooth/bthecho/bthsrv/inst/bthsrvinst.vcxproj | 82 +++++++++++- .../bthecho/bthsrv/sys/BthEchoSampleSrv.vcxproj | 88 ++++++++++++- bluetooth/bthecho/common/lib/bthecho.vcxproj | 90 ++++++++++++- bluetooth/serialhcibus/WDK/SerialBusWdk.vcxproj | 88 ++++++++++++- bluetooth/serialhcibus/serialhcibus.sln | 8 +- filesys/cdfs/cdfs.sln | 8 +- filesys/cdfs/cdfs.vcxproj | 70 ++++++++++- filesys/fastfat/fastfat.sln | 8 +- filesys/fastfat/fastfat.vcxproj | 70 ++++++++++- .../miniFilter/MetadataManager/MetadataManager.sln | 8 +- filesys/miniFilter/MetadataManager/fmm.vcxproj | 82 +++++++++++- filesys/miniFilter/NameChanger/NameChanger.sln | 8 +- filesys/miniFilter/NameChanger/NameChanger.vcxproj | 88 ++++++++++++- filesys/miniFilter/avscan/avscan.sln | 12 +- filesys/miniFilter/avscan/filter/avscan.vcxproj | 82 +++++++++++- filesys/miniFilter/avscan/user/avscan.vcxproj | 82 +++++++++++- filesys/miniFilter/cancelSafe/cancelSafe.sln | 8 +- filesys/miniFilter/cancelSafe/cancelSafe.vcxproj | 84 ++++++++++++- filesys/miniFilter/cdo/cdo.sln | 8 +- filesys/miniFilter/cdo/cdo.vcxproj | 68 +++++++++- filesys/miniFilter/change/change.sln | 8 +- filesys/miniFilter/change/change.vcxproj | 82 +++++++++++- filesys/miniFilter/ctx/ctx.sln | 8 +- filesys/miniFilter/ctx/ctx.vcxproj | 82 +++++++++++- filesys/miniFilter/delete/delete.sln | 8 +- filesys/miniFilter/delete/delete.vcxproj | 82 +++++++++++- filesys/miniFilter/minispy/filter/minispy.vcxproj | 90 ++++++++++++- filesys/miniFilter/minispy/minispy.sln | 12 +- filesys/miniFilter/minispy/user/minispy.vcxproj | 82 +++++++++++- filesys/miniFilter/nullFilter/nullFilter.sln | 8 +- filesys/miniFilter/nullFilter/nullFilter.vcxproj | 68 +++++++++- filesys/miniFilter/passThrough/passThrough.sln | 8 +- filesys/miniFilter/passThrough/passThrough.vcxproj | 68 +++++++++- filesys/miniFilter/scanner/filter/scanner.vcxproj | 88 ++++++++++++- filesys/miniFilter/scanner/scanner.sln | 12 +- filesys/miniFilter/scanner/user/scanuser.vcxproj | 82 +++++++++++- filesys/miniFilter/simrep/simrep.sln | 8 +- filesys/miniFilter/simrep/simrep.vcxproj | 82 +++++++++++- filesys/miniFilter/swapBuffers/swapBuffers.sln | 8 +- filesys/miniFilter/swapBuffers/swapBuffers.vcxproj | 82 +++++++++++- general/PLX9x5x/PLX9x5x.sln | 12 +- general/PLX9x5x/sys/Pci9x5x.vcxproj | 68 +++++++++- general/PLX9x5x/test/plx.vcxproj | 84 ++++++++++++- general/SystemDma/wdm/SystemDma.sln | 12 +- general/SystemDma/wdm/exe/SystemDmaApp.vcxproj | 78 +++++++++++- general/SystemDma/wdm/sys/SDma.vcxproj | 62 ++++++++- general/cancel/cancel.sln | 16 ++- general/cancel/exe/canclapp.vcxproj | 70 ++++++++++- general/cancel/startio/cancel.vcxproj | 68 +++++++++- general/cancel/sys/cancel.vcxproj | 68 +++++++++- general/echo/kmdf/driver/AutoSync/echo.vcxproj | 70 ++++++++++- general/echo/kmdf/driver/DriverSync/echo_2.vcxproj | 78 +++++++++++- general/echo/kmdf/exe/echoapp.vcxproj | 84 ++++++++++++- general/echo/kmdf/kmdfecho.sln | 16 ++- general/echo/umdf2/driver/AutoSync/echo.vcxproj | 80 +++++++++++- general/echo/umdf2/exe/echoapp.vcxproj | 84 ++++++++++++- general/echo/umdf2/umdf2echo.sln | 12 +- general/event/eventsample.sln | 12 +- general/event/exe/event.vcxproj | 70 ++++++++++- general/event/wdm/event.vcxproj | 74 ++++++++++- general/ioctl/kmdf/exe/nonpnpapp.vcxproj | 90 ++++++++++++- general/ioctl/kmdf/ioctl.sln | 12 +- general/ioctl/kmdf/sys/nonpnp.vcxproj | 84 ++++++++++++- general/ioctl/wdm/exe/ioctlapp.vcxproj | 78 +++++++++++- general/ioctl/wdm/ioctl.sln | 12 +- general/ioctl/wdm/sys/sioctl.vcxproj | 62 ++++++++- .../obcallback/control/ObCallbackTestCtrl.vcxproj | 96 +++++++++++++- general/obcallback/driver/ObCallbackTest.vcxproj | 86 ++++++++++++- general/obcallback/obcallback.sln | 12 +- general/pcidrv/kmdf/HW/PCIDRV.vcxproj | 106 +++++++++++++++- general/pcidrv/pcidrv.sln | 12 +- general/pcidrv/test/myping.vcxproj | 90 ++++++++++++- general/perfcounters/kcs/kcs.sln | 8 +- general/perfcounters/kcs/kcs.vcxproj | 90 ++++++++++++- general/registry/regfltr/exe/regctrl.vcxproj | 86 ++++++++++++- general/registry/regfltr/regfltr.sln | 12 +- general/registry/regfltr/sys/regfltr.vcxproj | 96 +++++++++++++- general/toaster/toastDrv/Package/package.VcxProj | 20 ++- general/toaster/toastDrv/exe/enum/Enum.vcxproj | 84 ++++++++++++- general/toaster/toastDrv/exe/notify/notify.vcxproj | 78 +++++++++++- general/toaster/toastDrv/exe/toast/toast.vcxproj | 78 +++++++++++- general/toaster/toastDrv/exe/wmi/WmiToast.vcxproj | 80 +++++++++++- .../toastDrv/kmdf/bus/dynamic/dynambus.vcxproj | 78 +++++++++++- .../toastDrv/kmdf/bus/static/StatBus.vcxproj | 78 +++++++++++- .../toastDrv/kmdf/filter/generic/filter.vcxproj | 82 +++++++++++- .../toastDrv/kmdf/filter/sideband/filter.vcxproj | 88 ++++++++++++- .../kmdf/func/featured/wdffeatured.vcxproj | 84 ++++++++++++- .../toastDrv/kmdf/func/simple/wdfsimple.vcxproj | 72 ++++++++++- .../toastDrv/kmdf/toastmon/wdftoastmon.vcxproj | 78 +++++++++++- general/toaster/toastDrv/toaster.sln | 52 +++++++- general/toaster/toastpkg/toastapp/toastapp.vcxproj | 84 ++++++++++++- general/toaster/toastpkg/toastco/tostrco2.vcxproj | 102 ++++++++++++++- general/toaster/toastpkg/toastpkg.sln | 16 ++- general/toaster/toastpkg/toastva/toastva.vcxproj | 84 ++++++++++++- general/toaster/umdf2/Package/package.VcxProj | 20 ++- general/toaster/umdf2/exe/enum/Enum.vcxproj | 84 ++++++++++++- general/toaster/umdf2/exe/notify/notify.vcxproj | 78 +++++++++++- general/toaster/umdf2/exe/toast/toast.vcxproj | 78 +++++++++++- .../toaster/umdf2/filter/generic/filterum.vcxproj | 82 +++++++++++- .../umdf2/func/featured/wdffeaturedum.vcxproj | 78 +++++++++++- .../toaster/umdf2/func/simple/wdfsimpleum.vcxproj | 78 +++++++++++- general/toaster/umdf2/umdf2toaster.sln | 32 ++++- .../SystemTraceControl/SystemTraceControl.sln | 8 +- .../SystemTraceControl/SystemTraceControl.vcxproj | 55 +++++++- general/tracing/evntdrv/Eventdrv/Eventdrv.vcxproj | 84 ++++++++++++- general/tracing/evntdrv/eventdrv.sln | 12 +- general/tracing/evntdrv/evntctrl/evntctrl.vcxproj | 62 ++++++++- .../tracing/tracedriver/tracectl/tracectl.vcxproj | 62 ++++++++- general/tracing/tracedriver/tracedrv.sln | 12 +- .../tracing/tracedriver/tracedrv/tracedrv.vcxproj | 68 +++++++++- gpio/samples/sim.sln | 20 ++- gpio/samples/simdevice/kmdf/simdevice.vcxproj | 86 ++++++++++++- gpio/samples/simdevice/umdf/simdeviceumdf.vcxproj | 86 ++++++++++++- gpio/samples/simgpio/simgpio.vcxproj | 68 +++++++++- gpio/samples/simgpio_i2c/simgpio_i2c.vcxproj | 82 +++++++++++- hid/firefly/app/flicker.vcxproj | 82 +++++++++++- hid/firefly/driver/firefly.vcxproj | 78 +++++++++++- hid/firefly/firefly.sln | 20 ++- hid/firefly/lib/Luminous.vcxproj | 82 +++++++++++- hid/firefly/sauron/SAURON.vcxproj | 128 ++++++++++++++++++- hid/hclient/hclient.sln | 8 +- hid/hclient/hclient.vcxproj | 82 +++++++++++- hid/hidusbfx2/Package/package.VcxProj | 20 ++- hid/hidusbfx2/hidkmdf/hidkmdf.vcxproj | 64 +++++++++- hid/hidusbfx2/hidusbfx2.sln | 16 ++- hid/hidusbfx2/sys/hidusbfx2.vcxproj | 96 +++++++++++++- hid/vhidmini2/app/testvhid.vcxproj | 84 ++++++++++++- hid/vhidmini2/driver/kmdf/vhidmini.vcxproj | 78 +++++++++++- hid/vhidmini2/driver/umdf2/VhidminiUm.vcxproj | 92 +++++++++++++- hid/vhidmini2/vhidmini2.sln | 16 ++- input/kbfiltr/exe/kbftest.vcxproj | 64 +++++++++- input/kbfiltr/kbfiltr.sln | 12 +- input/kbfiltr/sys/kbfiltr.vcxproj | 68 +++++++++- input/layout/all_kbds/kbdfr/kbdfr.vcxproj | 96 +++++++++++++- input/layout/all_kbds/kbdgr/kbdgr.vcxproj | 96 +++++++++++++- input/layout/fe_kbds/jpn/101/kbd101.vcxproj | 129 ++++++++++++++++++- input/layout/fe_kbds/jpn/106/kbd106.vcxproj | 129 ++++++++++++++++++- input/layout/kbd.sln | 24 +++- input/layout/kbdus/kbdus.vcxproj | 96 +++++++++++++- input/moufiltr/moufiltr.sln | 8 +- input/moufiltr/moufiltr.vcxproj | 62 ++++++++- network/config/bindview/bindview.sln | 8 +- network/config/bindview/bindview.vcxproj | 90 ++++++++++++- network/modem/fakemodem/fakemodem.sln | 8 +- network/modem/fakemodem/fakemodem.vcxproj | 72 ++++++++++- network/ndis/extension/base/sxbase.vcxproj | 88 ++++++++++++- network/ndis/extension/extensions.sln | 16 ++- .../extension/samples/forward/msforwardext.vcxproj | 97 +++++++++++++- .../samples/passthrough/mspassthroughext.vcxproj | 97 +++++++++++++- network/ndis/filter/filter.sln | 8 +- network/ndis/filter/ndislwf.vcxproj | 123 +++++++++++++++++- network/ndis/ndisprot/6x/ndisprot60.sln | 16 ++- network/ndis/ndisprot/6x/sys/60/ndisprot60.vcxproj | 105 +++++++++++++++- .../ndis/ndisprot/6x/sys/630/ndisprot630.vcxproj | 105 +++++++++++++++- network/ndis/ndisprot/6x/test/prottest.vcxproj | 108 +++++++++++++++- network/ndis/ndisprot_kmdf/60/nprt6wdf.vcxproj | 87 ++++++++++++- network/ndis/ndisprot_kmdf/Package/package.VcxProj | 30 ++++- network/ndis/ndisprot_kmdf/ndisprot_kmdf.sln | 16 ++- .../ndis/ndisprot_kmdf/notifyob/ProtNotify.vcxproj | 136 +++++++++++++++++++- network/ndis/netvmini/6x/60/netvmini60.vcxproj | 97 +++++++++++++- network/ndis/netvmini/6x/620/netvmini620.vcxproj | 97 +++++++++++++- network/ndis/netvmini/6x/630/netvmini630.vcxproj | 97 +++++++++++++- network/ndis/netvmini/6x/680/netvmini680.vcxproj | 97 +++++++++++++- network/ndis/netvmini/6x/netvmini.sln | 16 ++- .../RadioManagerSample/RadioManagerSample.sln | 8 +- .../radio/RadioManagerSample/cpp/SampleRM.vcxproj | 134 +++++++++++++++++++- network/trans/ddproxy/ddproxy.sln | 8 +- network/trans/ddproxy/sys/ddproxy.vcxproj | 84 ++++++++++++- network/trans/inspect/inspect.sln | 8 +- network/trans/inspect/sys/inspect.vcxproj | 84 ++++++++++++- network/trans/msnmntr/exe/monitor.vcxproj | 112 ++++++++++++++++- network/trans/msnmntr/msnmntr.sln | 12 +- network/trans/msnmntr/sys/msnmntr.vcxproj | 88 ++++++++++++- network/trans/stmedit/stmedit.sln | 8 +- network/trans/stmedit/sys/stmedit.vcxproj | 93 +++++++++++++- network/wsk/echosrv/echosrv.sln | 8 +- network/wsk/echosrv/echosrv.vcxproj | 82 +++++++++++- nfp/net/exe/NetNfpControl.vcxproj | 112 ++++++++++++++++- nfp/net/netnfp.sln | 8 +- pofx/PEP/acpi/sampleacpipep.vcxproj | 104 ++++++++++++++- pofx/PEP/common/pepcommon.vcxproj | 104 ++++++++++++++- pofx/PEP/pepsamples.sln | 12 +- pofx/UMDF2/App/PowerFxApp.vcxproj | 88 ++++++++++++- .../SingleComponentSingleStateUm.vcxproj | 100 ++++++++++++++- pofx/UMDF2/pofx.sln | 12 +- pofx/WDF/App/PowerFxApp.vcxproj | 82 +++++++++++- .../Driver/MultiComp/driver/WdfMultiComp.vcxproj | 82 +++++++++++- pofx/WDF/Driver/MultiComp/lib/WdfPoFx.vcxproj | 82 +++++++++++- .../SingleComp/SingleComponentFStateDriver.vcxproj | 76 ++++++++++- pofx/WDF/pofx.sln | 20 ++- .../MagneticStripeReader/MagneticStripeReader.sln | 8 +- .../SampleMagneticStripeReaderDrv.vcxproj | 98 ++++++++++++++- pos/drivers/barcodescanner/BarcodeScanner.sln | 8 +- .../barcodescanner/SampleBarcodeScannerDrv.vcxproj | 98 ++++++++++++++- prm/PrmFunc/prmfuncsample.vcxproj | 70 ++++++++++- prm/prmsample.sln | 8 +- sd/miniport/sdhc/inbox/sdhc.vcxproj | 68 +++++++++- sd/miniport/sdhc/sdhc.sln | 8 +- security/elam/elam.sln | 8 +- security/elam/elamsample.vcxproj | 62 ++++++++- sensors/ADXL345Acc/ADXL345Acc.sln | 8 +- sensors/ADXL345Acc/ADXL345Acc.vcxproj | 90 ++++++++++++- sensors/Activity/Activity.sln | 8 +- sensors/Activity/Activity.vcxproj | 90 ++++++++++++- sensors/CustomSensors/CustomSensors.sln | 8 +- sensors/CustomSensors/CustomSensors.vcxproj | 90 ++++++++++++- sensors/Fusion/FusionSensor.sln | 8 +- sensors/Fusion/FusionSensor.vcxproj | 88 ++++++++++++- sensors/Pedometer/Pedometer.sln | 8 +- sensors/Pedometer/Pedometer.vcxproj | 90 ++++++++++++- sensors/SensorsComboDriver/SensorsComboDriver.sln | 6 + .../SensorsComboDriver/SensorsComboDriver.vcxproj | 84 ++++++++++++- .../SimpleDeviceOrientationSensor.sln | 8 +- .../SimpleDeviceOrientationSensor.vcxproj | 90 ++++++++++++- .../ComPort/VirtualSerial2um.vcxproj | 84 ++++++++++++- .../VirtualSerial2/FakeModem/fakemodem2um.vcxproj | 84 ++++++++++++- serial/VirtualSerial2/VirtualSerial.sln | 12 +- serial/serenum/SerEnum_sample.vcxproj | 80 +++++++++++- serial/serenum/serenum.sln | 8 +- serial/serial/serial.sln | 8 +- serial/serial/wdfserial.vcxproj | 82 +++++++++++- simbatt/func/simbatt.sln | 8 +- simbatt/func/simbatt.vcxproj | 88 ++++++++++++- smartcrd/pscr/Pscr.vcxproj | 76 ++++++++++- smartcrd/pscr/pscr.inx | Bin 6272 -> 6898 bytes smartcrd/smartcrd.sln | 8 +- spb/SkeletonI2C/SkeletonI2C.sln | 8 +- spb/SkeletonI2C/skeletoni2c.vcxproj | 82 +++++++++++- spb/SpbTestTool/SpbTestTool.sln | 12 +- spb/SpbTestTool/exe/SpbTestTool.vcxproj | 94 +++++++++++++- spb/SpbTestTool/sys/SpbTestTool.vcxproj | 82 +++++++++++- storage/class/classpnp/classpnp.sln | 8 +- storage/class/classpnp/src/classpnp.vcxproj | 140 ++++++++++++++++++++- storage/class/disk/disk.sln | 8 +- storage/class/disk/src/disk.vcxproj | 84 ++++++++++++- storage/iscsi/iscsi.sln | 8 +- storage/iscsi/src/EmptyProject.vcxproj | 58 ++++++++- storage/miniports/lsi_u3/lsi_u3.sln | 8 +- storage/miniports/lsi_u3/src/lsi_u3.inf | Bin 6052 -> 6298 bytes storage/miniports/lsi_u3/src/lsi_u3.vcxproj | 84 ++++++++++++- .../miniports/storahci/src/inbox/storahci.vcxproj | 82 +++++++++++- storage/miniports/storahci/storahci.sln | 8 +- storage/msdsm/msdsm.sln | 6 +- storage/msdsm/src/SampleDSM.vcxproj | 100 ++++++++++++++- storage/tools/spti/spti.sln | 8 +- storage/tools/spti/src/spti.vcxproj | 70 ++++++++++- thermal/simsensor/simsensor.sln | 8 +- thermal/simsensor/simsensor.vcxproj | 82 +++++++++++- thermal/thermalclient/simtc.vcxproj | 82 +++++++++++- thermal/thermalclient/thermalclient.sln | 8 +- usb/UcmUcsiAcpiSample/UcmUcsiAcpiSample.sln | 8 +- .../UcmUcsiAcpiSample/UcmUcsiAcpiSample.vcxproj | 61 ++++++++- usb/kmdf_enumswitches/kmdf_enumswitches.sln | 8 +- .../sys/kmdf_enumswitches.vcxproj | 102 ++++++++++++++- usb/kmdf_fx2/driver/osrusbfx2.vcxproj | 102 ++++++++++++++- usb/kmdf_fx2/exe/osrusbfx2.vcxproj | 88 ++++++++++++- usb/kmdf_fx2/kmdf_fx2.sln | 12 +- usb/ufxclientsample/ufxclientsample.sln | 8 +- usb/ufxclientsample/ufxclientsample.vcxproj | 88 ++++++++++++- usb/umdf2_fx2/driver/osrusbfx2um.vcxproj | 90 ++++++++++++- usb/umdf2_fx2/exe/osrusbfx2.vcxproj | 88 ++++++++++++- usb/umdf2_fx2/umdf2_fx2.sln | 12 +- usb/usbsamp/exe/usbsamp.vcxproj | 82 +++++++++++- usb/usbsamp/sys/driver/usbsamp.vcxproj | 88 ++++++++++++- usb/usbsamp/usbsamp.sln | 12 +- usb/usbview/usbview.sln | 8 +- usb/usbview/usbview.vcxproj | 74 ++++++++++- usb/wdf_osrfx2_lab/kmdf/exe/osrusbfx2.vcxproj | 88 ++++++++++++- usb/wdf_osrfx2_lab/kmdf/step1/osrusbfx2.vcxproj | 76 ++++++++++- usb/wdf_osrfx2_lab/kmdf/step2/osrusbfx2.vcxproj | 76 ++++++++++- usb/wdf_osrfx2_lab/kmdf/step3/osrusbfx2.vcxproj | 76 ++++++++++- usb/wdf_osrfx2_lab/kmdf/step4/osrusbfx2.vcxproj | 76 ++++++++++- usb/wdf_osrfx2_lab/kmdf/step5/osrusbfx2.vcxproj | 82 +++++++++++- usb/wdf_osrfx2_lab/wdf_osrfx2_lab.sln | 28 ++++- video/KMDOD/KMDOD.sln | 8 +- video/KMDOD/Sample/SampleDisplay.vcxproj | 88 ++++++++++++- video/archive/pixlib/PixLib.vcxproj | 62 ++++++++- video/archive/pixlib/pixlib.sln | 8 +- wia/ProdScan/ProdScan.vcxproj | 96 +++++++++++++- wia/microdrv/testmcro.vcxproj | 86 ++++++++++++- wia/wia.sln | 32 ++++- wia/wiadriverex/errhandler/errhandler.vcxproj | 94 +++++++++++++- wia/wiadriverex/imgfilter/imgfilter.vcxproj | 94 +++++++++++++- wia/wiadriverex/segfilter/segfilter.vcxproj | 92 +++++++++++++- wia/wiadriverex/uiext2/uiext2.vcxproj | 92 +++++++++++++- wia/wiadriverex/usd/wiadriverex.vcxproj | 94 +++++++++++++- wmi/wmiacpi/acpimof.vcxproj | 80 +++++++++++- wmi/wmiacpi/wmiacpi.sln | 8 +- wmi/wmisamp/WmiSamp.vcxproj | 58 ++++++++- wmi/wmisamp/wmisamp.sln | 8 +- 303 files changed, 16897 insertions(+), 484 deletions(-) (limited to 'prm') diff --git a/avstream/avscamera/Package/package.VcxProj b/avstream/avscamera/Package/package.VcxProj index a570a1fb..af5d792b 100644 --- a/avstream/avscamera/Package/package.VcxProj +++ b/avstream/avscamera/Package/package.VcxProj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -51,10 +59,18 @@ Windows10 true + + Windows10 + true + Windows10 false + + Windows10 + false + @@ -94,12 +110,22 @@ sha256 + + + sha256 + + sha256 + + + sha256 + + - \ No newline at end of file + diff --git a/avstream/avscamera/avscamera.sln b/avstream/avscamera/avscamera.sln index b358cd90..f4a8e54f 100644 --- a/avstream/avscamera/avscamera.sln +++ b/avstream/avscamera/avscamera.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.7.34009.444 @@ -20,12 +20,26 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "DMFT", "DMFT", "{08C63CB6-7 EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Debug|x64 = Debug|x64 Release|Win32 = Release|Win32 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9397D285-8C29-4661-A741-F6703E2F5FD6}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {9397D285-8C29-4661-A741-F6703E2F5FD6}.Debug|ARM64.Build.0 = Debug|ARM64 + {24D35D6E-BDB0-4949-8A34-7DD25F0E8F68}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {24D35D6E-BDB0-4949-8A34-7DD25F0E8F68}.Debug|ARM64.Build.0 = Debug|ARM64 + {E77657CD-A270-49E1-823A-8A14FF8596C8}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {E77657CD-A270-49E1-823A-8A14FF8596C8}.Debug|ARM64.Build.0 = Debug|ARM64 + {9397D285-8C29-4661-A741-F6703E2F5FD6}.Release|ARM64.ActiveCfg = Release|ARM64 + {9397D285-8C29-4661-A741-F6703E2F5FD6}.Release|ARM64.Build.0 = Release|ARM64 + {24D35D6E-BDB0-4949-8A34-7DD25F0E8F68}.Release|ARM64.ActiveCfg = Release|ARM64 + {24D35D6E-BDB0-4949-8A34-7DD25F0E8F68}.Release|ARM64.Build.0 = Release|ARM64 + {E77657CD-A270-49E1-823A-8A14FF8596C8}.Release|ARM64.ActiveCfg = Release|ARM64 + {E77657CD-A270-49E1-823A-8A14FF8596C8}.Release|ARM64.Build.0 = Release|ARM64 {9397D285-8C29-4661-A741-F6703E2F5FD6}.Debug|Win32.ActiveCfg = Debug|Win32 {9397D285-8C29-4661-A741-F6703E2F5FD6}.Debug|Win32.Build.0 = Debug|Win32 {9397D285-8C29-4661-A741-F6703E2F5FD6}.Debug|x64.ActiveCfg = Debug|x64 diff --git a/avstream/avscamera/sys/AvsCamera.vcxproj b/avstream/avscamera/sys/AvsCamera.vcxproj index 74cada21..f0569772 100644 --- a/avstream/avscamera/sys/AvsCamera.vcxproj +++ b/avstream/avscamera/sys/AvsCamera.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -36,6 +44,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -44,6 +60,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -67,9 +91,15 @@ + + + + + + @@ -80,9 +110,15 @@ AvsCamera + + AvsCamera + AvsCamera + + AvsCamera + AvsCamera @@ -103,6 +139,20 @@ %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\common;$(SDK_INC_PATH)\ks + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ks.lib;$(DDK_LIB_PATH)\ntoskrnl.lib;$(DDK_LIB_PATH)\cng.lib + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\common;$(SDK_INC_PATH)\ks + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\common;$(SDK_INC_PATH)\ks + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\common;$(SDK_INC_PATH)\ks + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ks.lib;$(DDK_LIB_PATH)\ntoskrnl.lib;$(DDK_LIB_PATH)\cng.lib @@ -117,6 +167,20 @@ %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\common;$(SDK_INC_PATH)\ks + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ks.lib;$(DDK_LIB_PATH)\ntoskrnl.lib;$(DDK_LIB_PATH)\cng.lib + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\common;$(SDK_INC_PATH)\ks + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\common;$(SDK_INC_PATH)\ks + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\common;$(SDK_INC_PATH)\ks + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ks.lib;$(DDK_LIB_PATH)\ntoskrnl.lib;$(DDK_LIB_PATH)\cng.lib @@ -148,9 +212,15 @@ NTDDI_WIN10_RS3 + + NTDDI_WIN10_RS3 + NTDDI_WIN10_RS3 + + NTDDI_WIN10_RS3 + NTDDI_WIN10_RS3 @@ -171,6 +241,20 @@ sha256 + + + true + Level4 + + + + + %(AdditionalOptions) -merge:PAGECONST=PAGE + + + sha256 + + true @@ -185,6 +269,20 @@ sha256 + + + true + Level4 + + + + + %(AdditionalOptions) -merge:PAGECONST=PAGE + + + sha256 + + true @@ -256,4 +354,4 @@ - \ No newline at end of file + diff --git a/avstream/avssamp/avssamp.sln b/avstream/avssamp/avssamp.sln index 6b6d6b07..6aed60ec 100644 --- a/avstream/avssamp/avssamp.sln +++ b/avstream/avssamp/avssamp.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "avssamp", "avssamp.vcxproj" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {2CCFF21D-0B89-4F39-A4FC-2D0CCC25A071}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {2CCFF21D-0B89-4F39-A4FC-2D0CCC25A071}.Debug|ARM64.Build.0 = Debug|ARM64 + {2CCFF21D-0B89-4F39-A4FC-2D0CCC25A071}.Release|ARM64.ActiveCfg = Release|ARM64 + {2CCFF21D-0B89-4F39-A4FC-2D0CCC25A071}.Release|ARM64.Build.0 = Release|ARM64 {2CCFF21D-0B89-4F39-A4FC-2D0CCC25A071}.Debug|Win32.ActiveCfg = Debug|Win32 {2CCFF21D-0B89-4F39-A4FC-2D0CCC25A071}.Debug|Win32.Build.0 = Debug|Win32 {2CCFF21D-0B89-4F39-A4FC-2D0CCC25A071}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/avstream/avssamp/avssamp.vcxproj b/avstream/avssamp/avssamp.vcxproj index dfe36af7..ff040086 100644 --- a/avstream/avssamp/avssamp.vcxproj +++ b/avstream/avssamp/avssamp.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ avssamp + + avssamp + avssamp + + avssamp + avssamp @@ -112,6 +148,31 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ks.lib + %(AdditionalOptions) -merge:PAGECONST=PAGE + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);UNICODE;_UNICODE;DEBUG_LEVEL=DEBUGLVL_BLAB;_WIN2K_COMPAT_SLIST_USAGE;_NO_SYS_GUID_OPERATOR_EQ_ + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + true + Level4 + %(PreprocessorDefinitions);UNICODE;_UNICODE;DEBUG_LEVEL=DEBUGLVL_BLAB;_WIN2K_COMPAT_SLIST_USAGE;_NO_SYS_GUID_OPERATOR_EQ_ + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);UNICODE;_UNICODE;DEBUG_LEVEL=DEBUGLVL_BLAB;_WIN2K_COMPAT_SLIST_USAGE;_NO_SYS_GUID_OPERATOR_EQ_ + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ks.lib @@ -137,6 +198,31 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ks.lib + %(AdditionalOptions) -merge:PAGECONST=PAGE + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);UNICODE;_UNICODE;DEBUG_LEVEL=DEBUGLVL_BLAB;_WIN2K_COMPAT_SLIST_USAGE;_NO_SYS_GUID_OPERATOR_EQ_ + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + true + Level4 + %(PreprocessorDefinitions);UNICODE;_UNICODE;DEBUG_LEVEL=DEBUGLVL_BLAB;_WIN2K_COMPAT_SLIST_USAGE;_NO_SYS_GUID_OPERATOR_EQ_ + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);UNICODE;_UNICODE;DEBUG_LEVEL=DEBUGLVL_BLAB;_WIN2K_COMPAT_SLIST_USAGE;_NO_SYS_GUID_OPERATOR_EQ_ + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ks.lib @@ -211,4 +297,4 @@ - \ No newline at end of file + diff --git a/avstream/sampledevicemft/SampleDeviceMft.sln b/avstream/sampledevicemft/SampleDeviceMft.sln index a6a00c4d..8e8e176f 100644 --- a/avstream/sampledevicemft/SampleDeviceMft.sln +++ b/avstream/sampledevicemft/SampleDeviceMft.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "multipinmft", "multipinmft. EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {E77657CD-A270-49E1-823A-8A14FF8596C8}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {E77657CD-A270-49E1-823A-8A14FF8596C8}.Debug|ARM64.Build.0 = Debug|ARM64 + {E77657CD-A270-49E1-823A-8A14FF8596C8}.Release|ARM64.ActiveCfg = Release|ARM64 + {E77657CD-A270-49E1-823A-8A14FF8596C8}.Release|ARM64.Build.0 = Release|ARM64 {E77657CD-A270-49E1-823A-8A14FF8596C8}.Debug|Win32.ActiveCfg = Debug|Win32 {E77657CD-A270-49E1-823A-8A14FF8596C8}.Debug|Win32.Build.0 = Debug|Win32 {E77657CD-A270-49E1-823A-8A14FF8596C8}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/avstream/sampledevicemft/multipinmft.vcxproj b/avstream/sampledevicemft/multipinmft.vcxproj index 152ff207..ae9d8f0a 100644 --- a/avstream/sampledevicemft/multipinmft.vcxproj +++ b/avstream/sampledevicemft/multipinmft.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 True @@ -43,6 +59,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -163,11 +193,21 @@ Sync + + + Sync + + Sync + + + Sync + + Sync @@ -193,6 +233,21 @@ Source.def + + + %(PreprocessorDefinitions);UNICODE;MF_WPP;SECURITY_WIN32;MFT_UNIQUE_METHOD_NAMES;MF_DEVICEMFT_ALLOW_MFT0_LOAD + + + %(PreprocessorDefinitions);UNICODE;MF_WPP;SECURITY_WIN32;MFT_UNIQUE_METHOD_NAMES;MF_DEVICEMFT_ALLOW_MFT0_LOAD + + + %(PreprocessorDefinitions);UNICODE;MF_WPP;SECURITY_WIN32;MFT_UNIQUE_METHOD_NAMES;MF_DEVICEMFT_ALLOW_MFT0_LOAD + + + onecore.lib;D2d1.lib;mfcore.lib;mfplat.lib;mfuuid.lib;uuid.lib + Source.def + + %(PreprocessorDefinitions);UNICODE;MF_WPP;SECURITY_WIN32;MFT_UNIQUE_METHOD_NAMES;MF_DEVICEMFT_ALLOW_MFT0_LOAD @@ -208,6 +263,21 @@ Source.def + + + %(PreprocessorDefinitions);UNICODE;MF_WPP;SECURITY_WIN32;MFT_UNIQUE_METHOD_NAMES;MF_DEVICEMFT_ALLOW_MFT0_LOAD + + + %(PreprocessorDefinitions);UNICODE;MF_WPP;SECURITY_WIN32;MFT_UNIQUE_METHOD_NAMES;MF_DEVICEMFT_ALLOW_MFT0_LOAD + + + %(PreprocessorDefinitions);UNICODE;MF_WPP;SECURITY_WIN32;MFT_UNIQUE_METHOD_NAMES;MF_DEVICEMFT_ALLOW_MFT0_LOAD + + + onecore.lib;D2d1.lib;mfcore.lib;mfplat.lib;mfuuid.lib;uuid.lib + Source.def + + %(PreprocessorDefinitions);UNICODE;MF_WPP;SECURITY_WIN32;MFT_UNIQUE_METHOD_NAMES;MF_DEVICEMFT_ALLOW_MFT0_LOAD @@ -266,4 +336,4 @@ - \ No newline at end of file + diff --git a/avstream/samplemft0/Package/package.vcxproj b/avstream/samplemft0/Package/package.vcxproj index c898c343..511e7b92 100644 --- a/avstream/samplemft0/Package/package.vcxproj +++ b/avstream/samplemft0/Package/package.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -44,10 +52,18 @@ Windows10 true + + Windows10 + true + Windows10 false + + Windows10 + false + @@ -88,4 +104,4 @@ - \ No newline at end of file + diff --git a/avstream/samplemft0/SampleMft0.sln b/avstream/samplemft0/SampleMft0.sln index 8084fbc7..f184aa8e 100644 --- a/avstream/samplemft0/SampleMft0.sln +++ b/avstream/samplemft0/SampleMft0.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 11 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Package", "Package", "{D5FD28DE-8407-4B27-8785-9839775E254A}" @@ -9,12 +9,22 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleMft0", "SampleMft0.vc EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Debug|x64 = Debug|x64 Release|Win32 = Release|Win32 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {07664D04-E5E5-4249-8382-4D97E3E5557D}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {07664D04-E5E5-4249-8382-4D97E3E5557D}.Debug|ARM64.Build.0 = Debug|ARM64 + {DCF923F6-7164-4A0E-9486-B8A140234CCA}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {DCF923F6-7164-4A0E-9486-B8A140234CCA}.Debug|ARM64.Build.0 = Debug|ARM64 + {07664D04-E5E5-4249-8382-4D97E3E5557D}.Release|ARM64.ActiveCfg = Release|ARM64 + {07664D04-E5E5-4249-8382-4D97E3E5557D}.Release|ARM64.Build.0 = Release|ARM64 + {DCF923F6-7164-4A0E-9486-B8A140234CCA}.Release|ARM64.ActiveCfg = Release|ARM64 + {DCF923F6-7164-4A0E-9486-B8A140234CCA}.Release|ARM64.Build.0 = Release|ARM64 {07664D04-E5E5-4249-8382-4D97E3E5557D}.Debug|Win32.ActiveCfg = Debug|Win32 {07664D04-E5E5-4249-8382-4D97E3E5557D}.Debug|Win32.Build.0 = Debug|Win32 {07664D04-E5E5-4249-8382-4D97E3E5557D}.Debug|x64.ActiveCfg = Debug|x64 diff --git a/avstream/samplemft0/SampleMft0.vcxproj b/avstream/samplemft0/SampleMft0.vcxproj index c7a28b8e..febfd9d9 100644 --- a/avstream/samplemft0/SampleMft0.vcxproj +++ b/avstream/samplemft0/SampleMft0.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -47,10 +55,18 @@ Windows10 True + + Windows10 + True + Windows10 False + + Windows10 + False + $(IntDir) @@ -58,9 +74,15 @@ + + + + + + @@ -143,4 +165,4 @@ - \ No newline at end of file + diff --git a/bluetooth/bthecho/bthcli/app/BthEcho.vcxproj b/bluetooth/bthecho/bthcli/app/BthEcho.vcxproj index 2d15392b..53b430c9 100644 --- a/bluetooth/bthecho/bthcli/app/BthEcho.vcxproj +++ b/bluetooth/bthecho/bthcli/app/BthEcho.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ BthEcho + + BthEcho + BthEcho + + BthEcho + BthEcho @@ -108,6 +144,27 @@ %(AdditionalDependencies);cfgmgr32.lib + + + true + Level4 + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);..\..\common\inc;$(DDK_INC_PATH) + + + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);..\..\common\inc;$(DDK_INC_PATH) + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);..\..\common\inc;$(DDK_INC_PATH) + + + %(AdditionalDependencies);cfgmgr32.lib + + true @@ -129,6 +186,27 @@ %(AdditionalDependencies);cfgmgr32.lib + + + true + Level4 + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);..\..\common\inc;$(DDK_INC_PATH) + + + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);..\..\common\inc;$(DDK_INC_PATH) + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);..\..\common\inc;$(DDK_INC_PATH) + + + %(AdditionalDependencies);cfgmgr32.lib + + true @@ -187,4 +265,4 @@ - \ No newline at end of file + diff --git a/bluetooth/bthecho/bthcli/sys/BthEchoSampleCli.vcxproj b/bluetooth/bthecho/bthcli/sys/BthEchoSampleCli.vcxproj index 389e659e..fbaa61f3 100644 --- a/bluetooth/bthecho/bthcli/sys/BthEchoSampleCli.vcxproj +++ b/bluetooth/bthecho/bthcli/sys/BthEchoSampleCli.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -86,9 +116,15 @@ BthEchoSampleCli + + BthEchoSampleCli + BthEchoSampleCli + + BthEchoSampleCli + BthEchoSampleCli @@ -119,6 +155,30 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);..\..\common\inc + %(PreprocessorDefinitions);EVENT_TRACING + + + + + %(AdditionalIncludeDirectories);..\..\common\inc + %(PreprocessorDefinitions);EVENT_TRACING + + + %(AdditionalIncludeDirectories);..\..\common\inc + %(PreprocessorDefinitions);EVENT_TRACING + + + %(AdditionalDependencies);.\..\..\common\lib\$(IntDir)\bthecho.lib + + + sha256 + + true @@ -143,6 +203,30 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);..\..\common\inc + %(PreprocessorDefinitions);EVENT_TRACING + + + + + %(AdditionalIncludeDirectories);..\..\common\inc + %(PreprocessorDefinitions);EVENT_TRACING + + + %(AdditionalIncludeDirectories);..\..\common\inc + %(PreprocessorDefinitions);EVENT_TRACING + + + %(AdditionalDependencies);.\..\..\common\lib\$(IntDir)\bthecho.lib + + + sha256 + + true @@ -204,4 +288,4 @@ - \ No newline at end of file + diff --git a/bluetooth/bthecho/bthecho.sln b/bluetooth/bthecho/bthecho.sln index e3072265..77f6094d 100644 --- a/bluetooth/bthecho/bthecho.sln +++ b/bluetooth/bthecho/bthecho.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -37,12 +37,34 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BthEchoSampleSrv", "bthsrv\ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {6DCBEDF9-2E01-4FFC-B1D0-B1FF37BA8AB1}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {6DCBEDF9-2E01-4FFC-B1D0-B1FF37BA8AB1}.Debug|ARM64.Build.0 = Debug|ARM64 + {9A21231F-47C6-4448-9EDA-3BD5FCFD1CF3}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {9A21231F-47C6-4448-9EDA-3BD5FCFD1CF3}.Debug|ARM64.Build.0 = Debug|ARM64 + {77C52F5F-5FF9-4EE2-8640-498B84C4CC67}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {77C52F5F-5FF9-4EE2-8640-498B84C4CC67}.Debug|ARM64.Build.0 = Debug|ARM64 + {45C01E94-3016-4496-8D66-5E84000096B0}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {45C01E94-3016-4496-8D66-5E84000096B0}.Debug|ARM64.Build.0 = Debug|ARM64 + {70D1528B-703D-4A9C-9650-3122FA8A4CD8}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {70D1528B-703D-4A9C-9650-3122FA8A4CD8}.Debug|ARM64.Build.0 = Debug|ARM64 + {6DCBEDF9-2E01-4FFC-B1D0-B1FF37BA8AB1}.Release|ARM64.ActiveCfg = Release|ARM64 + {6DCBEDF9-2E01-4FFC-B1D0-B1FF37BA8AB1}.Release|ARM64.Build.0 = Release|ARM64 + {9A21231F-47C6-4448-9EDA-3BD5FCFD1CF3}.Release|ARM64.ActiveCfg = Release|ARM64 + {9A21231F-47C6-4448-9EDA-3BD5FCFD1CF3}.Release|ARM64.Build.0 = Release|ARM64 + {77C52F5F-5FF9-4EE2-8640-498B84C4CC67}.Release|ARM64.ActiveCfg = Release|ARM64 + {77C52F5F-5FF9-4EE2-8640-498B84C4CC67}.Release|ARM64.Build.0 = Release|ARM64 + {45C01E94-3016-4496-8D66-5E84000096B0}.Release|ARM64.ActiveCfg = Release|ARM64 + {45C01E94-3016-4496-8D66-5E84000096B0}.Release|ARM64.Build.0 = Release|ARM64 + {70D1528B-703D-4A9C-9650-3122FA8A4CD8}.Release|ARM64.ActiveCfg = Release|ARM64 + {70D1528B-703D-4A9C-9650-3122FA8A4CD8}.Release|ARM64.Build.0 = Release|ARM64 {6DCBEDF9-2E01-4FFC-B1D0-B1FF37BA8AB1}.Debug|Win32.ActiveCfg = Debug|Win32 {6DCBEDF9-2E01-4FFC-B1D0-B1FF37BA8AB1}.Debug|Win32.Build.0 = Debug|Win32 {6DCBEDF9-2E01-4FFC-B1D0-B1FF37BA8AB1}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/bluetooth/bthecho/bthsrv/inst/bthsrvinst.vcxproj b/bluetooth/bthecho/bthsrv/inst/bthsrvinst.vcxproj index 035024e8..7b3e83dc 100644 --- a/bluetooth/bthecho/bthsrv/inst/bthsrvinst.vcxproj +++ b/bluetooth/bthecho/bthsrv/inst/bthsrvinst.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ bthsrvinst + + bthsrvinst + bthsrvinst + + bthsrvinst + bthsrvinst @@ -108,6 +144,27 @@ %(AdditionalDependencies);BluetoothApis.lib + + + true + Level4 + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);..\..\common\inc + + + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);..\..\common\inc + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);..\..\common\inc + + + %(AdditionalDependencies);BluetoothApis.lib + + true @@ -129,6 +186,27 @@ %(AdditionalDependencies);BluetoothApis.lib + + + true + Level4 + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);..\..\common\inc + + + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);..\..\common\inc + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);..\..\common\inc + + + %(AdditionalDependencies);BluetoothApis.lib + + true @@ -187,4 +265,4 @@ - \ No newline at end of file + diff --git a/bluetooth/bthecho/bthsrv/sys/BthEchoSampleSrv.vcxproj b/bluetooth/bthecho/bthsrv/sys/BthEchoSampleSrv.vcxproj index 6c186f8e..9906195e 100644 --- a/bluetooth/bthecho/bthsrv/sys/BthEchoSampleSrv.vcxproj +++ b/bluetooth/bthecho/bthsrv/sys/BthEchoSampleSrv.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -86,9 +116,15 @@ BthEchoSampleSrv + + BthEchoSampleSrv + BthEchoSampleSrv + + BthEchoSampleSrv + BthEchoSampleSrv @@ -119,6 +155,30 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);..\..\common\inc + %(PreprocessorDefinitions);EVENT_TRACING + + + + + %(AdditionalIncludeDirectories);..\..\common\inc + %(PreprocessorDefinitions);EVENT_TRACING + + + %(AdditionalIncludeDirectories);..\..\common\inc + %(PreprocessorDefinitions);EVENT_TRACING + + + %(AdditionalDependencies);.\..\..\common\lib\$(IntDir)\bthecho.lib + + + sha256 + + true @@ -143,6 +203,30 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);..\..\common\inc + %(PreprocessorDefinitions);EVENT_TRACING + + + + + %(AdditionalIncludeDirectories);..\..\common\inc + %(PreprocessorDefinitions);EVENT_TRACING + + + %(AdditionalIncludeDirectories);..\..\common\inc + %(PreprocessorDefinitions);EVENT_TRACING + + + %(AdditionalDependencies);.\..\..\common\lib\$(IntDir)\bthecho.lib + + + sha256 + + true @@ -204,4 +288,4 @@ - \ No newline at end of file + diff --git a/bluetooth/bthecho/common/lib/bthecho.vcxproj b/bluetooth/bthecho/common/lib/bthecho.vcxproj index 329d8f30..04bf9762 100644 --- a/bluetooth/bthecho/common/lib/bthecho.vcxproj +++ b/bluetooth/bthecho/common/lib/bthecho.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 StaticLibrary + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + StaticLibrary + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 StaticLibrary + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + StaticLibrary + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -88,9 +118,15 @@ bthecho + + bthecho + bthecho + + bthecho + bthecho @@ -122,6 +158,31 @@ sha256 + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + %(PreprocessorDefinitions);_UNICODE;UNICODE + %(PreprocessorDefinitions);EVENT_TRACING + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + %(PreprocessorDefinitions);_UNICODE;UNICODE + true + Level4 + %(DisableSpecificWarnings);4201 + %(PreprocessorDefinitions);EVENT_TRACING + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + %(PreprocessorDefinitions);_UNICODE;UNICODE + %(PreprocessorDefinitions);EVENT_TRACING + + + sha256 + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc @@ -147,6 +208,31 @@ sha256 + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + %(PreprocessorDefinitions);_UNICODE;UNICODE + %(PreprocessorDefinitions);EVENT_TRACING + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + %(PreprocessorDefinitions);_UNICODE;UNICODE + true + Level4 + %(DisableSpecificWarnings);4201 + %(PreprocessorDefinitions);EVENT_TRACING + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + %(PreprocessorDefinitions);_UNICODE;UNICODE + %(PreprocessorDefinitions);EVENT_TRACING + + + sha256 + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc @@ -210,4 +296,4 @@ - \ No newline at end of file + diff --git a/bluetooth/serialhcibus/WDK/SerialBusWdk.vcxproj b/bluetooth/serialhcibus/WDK/SerialBusWdk.vcxproj index 5302d735..2ad9582a 100644 --- a/bluetooth/serialhcibus/WDK/SerialBusWdk.vcxproj +++ b/bluetooth/serialhcibus/WDK/SerialBusWdk.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Universal + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Universal + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -90,9 +120,15 @@ SerialBusWdk + + SerialBusWdk + SerialBusWdk + + SerialBusWdk + SerialBusWdk @@ -123,6 +159,30 @@ sha256 + + + %(AdditionalIncludeDirectories);..\;. + %(PreprocessorDefinitions);RESHUB_USE_HELPER_ROUTINES + + + %(AdditionalIncludeDirectories);..\;. + %(PreprocessorDefinitions);RESHUB_USE_HELPER_ROUTINES + true + Level4 + + + + + %(AdditionalIncludeDirectories);..\;. + %(PreprocessorDefinitions);RESHUB_USE_HELPER_ROUTINES + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\Ntstrsafe.lib + + + sha256 + + %(AdditionalIncludeDirectories);..\;. @@ -147,6 +207,30 @@ sha256 + + + %(AdditionalIncludeDirectories);..\;. + %(PreprocessorDefinitions);RESHUB_USE_HELPER_ROUTINES + + + %(AdditionalIncludeDirectories);..\;. + %(PreprocessorDefinitions);RESHUB_USE_HELPER_ROUTINES + true + Level4 + + + + + %(AdditionalIncludeDirectories);..\;. + %(PreprocessorDefinitions);RESHUB_USE_HELPER_ROUTINES + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\Ntstrsafe.lib + + + sha256 + + %(AdditionalIncludeDirectories);..\;. @@ -211,4 +295,4 @@ - \ No newline at end of file + diff --git a/bluetooth/serialhcibus/serialhcibus.sln b/bluetooth/serialhcibus/serialhcibus.sln index 7740f864..b1d616df 100644 --- a/bluetooth/serialhcibus/serialhcibus.sln +++ b/bluetooth/serialhcibus/serialhcibus.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SerialBusWdk", "WDK\SerialB EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F8EFDBF2-B339-413F-94F5-AEB55DCCBA01}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {F8EFDBF2-B339-413F-94F5-AEB55DCCBA01}.Debug|ARM64.Build.0 = Debug|ARM64 + {F8EFDBF2-B339-413F-94F5-AEB55DCCBA01}.Release|ARM64.ActiveCfg = Release|ARM64 + {F8EFDBF2-B339-413F-94F5-AEB55DCCBA01}.Release|ARM64.Build.0 = Release|ARM64 {F8EFDBF2-B339-413F-94F5-AEB55DCCBA01}.Debug|Win32.ActiveCfg = Debug|Win32 {F8EFDBF2-B339-413F-94F5-AEB55DCCBA01}.Debug|Win32.Build.0 = Debug|Win32 {F8EFDBF2-B339-413F-94F5-AEB55DCCBA01}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/filesys/cdfs/cdfs.sln b/filesys/cdfs/cdfs.sln index 518cfdfa..b73573cc 100644 --- a/filesys/cdfs/cdfs.sln +++ b/filesys/cdfs/cdfs.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cdfs", "cdfs.vcxproj", "{5B EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {5BA27054-1164-45A2-AC23-F620D9AA3E1F}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {5BA27054-1164-45A2-AC23-F620D9AA3E1F}.Debug|ARM64.Build.0 = Debug|ARM64 + {5BA27054-1164-45A2-AC23-F620D9AA3E1F}.Release|ARM64.ActiveCfg = Release|ARM64 + {5BA27054-1164-45A2-AC23-F620D9AA3E1F}.Release|ARM64.Build.0 = Release|ARM64 {5BA27054-1164-45A2-AC23-F620D9AA3E1F}.Debug|Win32.ActiveCfg = Debug|Win32 {5BA27054-1164-45A2-AC23-F620D9AA3E1F}.Debug|Win32.Build.0 = Debug|Win32 {5BA27054-1164-45A2-AC23-F620D9AA3E1F}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/filesys/cdfs/cdfs.vcxproj b/filesys/cdfs/cdfs.vcxproj index 9a32ad6c..e0f61f04 100644 --- a/filesys/cdfs/cdfs.vcxproj +++ b/filesys/cdfs/cdfs.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -79,9 +109,15 @@ cdfs + + cdfs + cdfs + + cdfs + cdfs @@ -94,12 +130,24 @@ Level4 + + + true + Level4 + + true Level4 + + + true + Level4 + + true @@ -121,6 +169,15 @@ sha256 + + + + + + + sha256 + + @@ -130,6 +187,15 @@ sha256 + + + + + + + sha256 + + @@ -338,4 +404,4 @@ - \ No newline at end of file + diff --git a/filesys/fastfat/fastfat.sln b/filesys/fastfat/fastfat.sln index 6a5189c8..e4070620 100644 --- a/filesys/fastfat/fastfat.sln +++ b/filesys/fastfat/fastfat.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fastfat", "fastfat.vcxproj" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {31BA0C80-2E84-44C8-9FEA-E8994DC90440}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {31BA0C80-2E84-44C8-9FEA-E8994DC90440}.Debug|ARM64.Build.0 = Debug|ARM64 + {31BA0C80-2E84-44C8-9FEA-E8994DC90440}.Release|ARM64.ActiveCfg = Release|ARM64 + {31BA0C80-2E84-44C8-9FEA-E8994DC90440}.Release|ARM64.Build.0 = Release|ARM64 {31BA0C80-2E84-44C8-9FEA-E8994DC90440}.Debug|Win32.ActiveCfg = Debug|Win32 {31BA0C80-2E84-44C8-9FEA-E8994DC90440}.Debug|Win32.Build.0 = Debug|Win32 {31BA0C80-2E84-44C8-9FEA-E8994DC90440}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/filesys/fastfat/fastfat.vcxproj b/filesys/fastfat/fastfat.vcxproj index 8ad4848e..bb01bdfb 100644 --- a/filesys/fastfat/fastfat.vcxproj +++ b/filesys/fastfat/fastfat.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -79,9 +109,15 @@ fastfat + + fastfat + fastfat + + fastfat + fastfat @@ -94,12 +130,24 @@ Level4 + + + true + Level4 + + true Level4 + + + true + Level4 + + true @@ -121,6 +169,15 @@ sha256 + + + + + + + sha256 + + @@ -130,6 +187,15 @@ sha256 + + + + + + + sha256 + + @@ -368,4 +434,4 @@ - \ No newline at end of file + diff --git a/filesys/miniFilter/MetadataManager/MetadataManager.sln b/filesys/miniFilter/MetadataManager/MetadataManager.sln index 9d47fdd5..d35f3c77 100644 --- a/filesys/miniFilter/MetadataManager/MetadataManager.sln +++ b/filesys/miniFilter/MetadataManager/MetadataManager.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fmm", "fmm.vcxproj", "{D3B7 EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D3B738B6-46C9-4572-A81F-C47F95D39A7B}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {D3B738B6-46C9-4572-A81F-C47F95D39A7B}.Debug|ARM64.Build.0 = Debug|ARM64 + {D3B738B6-46C9-4572-A81F-C47F95D39A7B}.Release|ARM64.ActiveCfg = Release|ARM64 + {D3B738B6-46C9-4572-A81F-C47F95D39A7B}.Release|ARM64.Build.0 = Release|ARM64 {D3B738B6-46C9-4572-A81F-C47F95D39A7B}.Debug|Win32.ActiveCfg = Debug|Win32 {D3B738B6-46C9-4572-A81F-C47F95D39A7B}.Debug|Win32.Build.0 = Debug|Win32 {D3B738B6-46C9-4572-A81F-C47F95D39A7B}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/filesys/miniFilter/MetadataManager/fmm.vcxproj b/filesys/miniFilter/MetadataManager/fmm.vcxproj index c4814d15..9b9263d4 100644 --- a/filesys/miniFilter/MetadataManager/fmm.vcxproj +++ b/filesys/miniFilter/MetadataManager/fmm.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ fmm + + fmm + fmm + + fmm + fmm @@ -108,6 +144,27 @@ sha256 + + + true + Level4 + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\fltMgr.lib + + + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + sha256 + + true @@ -129,6 +186,27 @@ sha256 + + + true + Level4 + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\fltMgr.lib + + + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + sha256 + + true @@ -191,4 +269,4 @@ - \ No newline at end of file + diff --git a/filesys/miniFilter/NameChanger/NameChanger.sln b/filesys/miniFilter/NameChanger/NameChanger.sln index 95037d38..82219d29 100644 --- a/filesys/miniFilter/NameChanger/NameChanger.sln +++ b/filesys/miniFilter/NameChanger/NameChanger.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "NameChanger", "NameChanger. EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9170658B-BFBD-4CF4-A7D3-E39272CCF4E9}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {9170658B-BFBD-4CF4-A7D3-E39272CCF4E9}.Debug|ARM64.Build.0 = Debug|ARM64 + {9170658B-BFBD-4CF4-A7D3-E39272CCF4E9}.Release|ARM64.ActiveCfg = Release|ARM64 + {9170658B-BFBD-4CF4-A7D3-E39272CCF4E9}.Release|ARM64.Build.0 = Release|ARM64 {9170658B-BFBD-4CF4-A7D3-E39272CCF4E9}.Debug|Win32.ActiveCfg = Debug|Win32 {9170658B-BFBD-4CF4-A7D3-E39272CCF4E9}.Debug|Win32.Build.0 = Debug|Win32 {9170658B-BFBD-4CF4-A7D3-E39272CCF4E9}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/filesys/miniFilter/NameChanger/NameChanger.vcxproj b/filesys/miniFilter/NameChanger/NameChanger.vcxproj index 3cfbacdc..56e54638 100644 --- a/filesys/miniFilter/NameChanger/NameChanger.vcxproj +++ b/filesys/miniFilter/NameChanger/NameChanger.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ NameChanger + + NameChanger + NameChanger + + NameChanger + NameChanger @@ -111,6 +147,30 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);. + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + + + %(AdditionalIncludeDirectories);. + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + %(AdditionalIncludeDirectories);. + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\fltMgr.lib + + + sha256 + + true @@ -135,6 +195,30 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);. + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + + + %(AdditionalIncludeDirectories);. + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + %(AdditionalIncludeDirectories);. + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\fltMgr.lib + + + sha256 + + true @@ -213,4 +297,4 @@ - \ No newline at end of file + diff --git a/filesys/miniFilter/avscan/avscan.sln b/filesys/miniFilter/avscan/avscan.sln index f529b3b1..9d19f201 100644 --- a/filesys/miniFilter/avscan/avscan.sln +++ b/filesys/miniFilter/avscan/avscan.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -13,12 +13,22 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "avscan", "user\avscan.vcxpr EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F8973BDD-E1CC-4FD5-B7E7-745274B005C4}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {F8973BDD-E1CC-4FD5-B7E7-745274B005C4}.Debug|ARM64.Build.0 = Debug|ARM64 + {5E40E4EF-AC99-48D8-8297-037C80560B7D}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {5E40E4EF-AC99-48D8-8297-037C80560B7D}.Debug|ARM64.Build.0 = Debug|ARM64 + {F8973BDD-E1CC-4FD5-B7E7-745274B005C4}.Release|ARM64.ActiveCfg = Release|ARM64 + {F8973BDD-E1CC-4FD5-B7E7-745274B005C4}.Release|ARM64.Build.0 = Release|ARM64 + {5E40E4EF-AC99-48D8-8297-037C80560B7D}.Release|ARM64.ActiveCfg = Release|ARM64 + {5E40E4EF-AC99-48D8-8297-037C80560B7D}.Release|ARM64.Build.0 = Release|ARM64 {F8973BDD-E1CC-4FD5-B7E7-745274B005C4}.Debug|Win32.ActiveCfg = Debug|Win32 {F8973BDD-E1CC-4FD5-B7E7-745274B005C4}.Debug|Win32.Build.0 = Debug|Win32 {F8973BDD-E1CC-4FD5-B7E7-745274B005C4}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/filesys/miniFilter/avscan/filter/avscan.vcxproj b/filesys/miniFilter/avscan/filter/avscan.vcxproj index fa6122b5..e070a8d5 100644 --- a/filesys/miniFilter/avscan/filter/avscan.vcxproj +++ b/filesys/miniFilter/avscan/filter/avscan.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ avscan + + avscan + avscan + + avscan + avscan @@ -108,6 +144,27 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);..\inc + + + + + %(AdditionalIncludeDirectories);..\inc + + + %(AdditionalIncludeDirectories);..\inc + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\fltMgr.lib + + + sha256 + + true @@ -129,6 +186,27 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);..\inc + + + + + %(AdditionalIncludeDirectories);..\inc + + + %(AdditionalIncludeDirectories);..\inc + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\fltMgr.lib + + + sha256 + + true @@ -197,4 +275,4 @@ - \ No newline at end of file + diff --git a/filesys/miniFilter/avscan/user/avscan.vcxproj b/filesys/miniFilter/avscan/user/avscan.vcxproj index 1137228a..f46f9adb 100644 --- a/filesys/miniFilter/avscan/user/avscan.vcxproj +++ b/filesys/miniFilter/avscan/user/avscan.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Desktop + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Desktop + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ avscan + + avscan + avscan + + avscan + avscan @@ -108,6 +144,27 @@ %(AdditionalDependencies);fltLib.lib + + + true + Level4 + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(IFSKIT_INC_PATH);$(DDK_INC_PATH);..\inc + + + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(IFSKIT_INC_PATH);$(DDK_INC_PATH);..\inc + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(IFSKIT_INC_PATH);$(DDK_INC_PATH);..\inc + + + %(AdditionalDependencies);fltLib.lib + + true @@ -129,6 +186,27 @@ %(AdditionalDependencies);fltLib.lib + + + true + Level4 + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(IFSKIT_INC_PATH);$(DDK_INC_PATH);..\inc + + + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(IFSKIT_INC_PATH);$(DDK_INC_PATH);..\inc + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(IFSKIT_INC_PATH);$(DDK_INC_PATH);..\inc + + + %(AdditionalDependencies);fltLib.lib + + true @@ -190,4 +268,4 @@ - \ No newline at end of file + diff --git a/filesys/miniFilter/cancelSafe/cancelSafe.sln b/filesys/miniFilter/cancelSafe/cancelSafe.sln index 60312e15..e3fe92f6 100644 --- a/filesys/miniFilter/cancelSafe/cancelSafe.sln +++ b/filesys/miniFilter/cancelSafe/cancelSafe.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cancelSafe", "cancelSafe.vc EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {68EF78DE-3357-4923-AA90-141CF3EA07BB}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {68EF78DE-3357-4923-AA90-141CF3EA07BB}.Debug|ARM64.Build.0 = Debug|ARM64 + {68EF78DE-3357-4923-AA90-141CF3EA07BB}.Release|ARM64.ActiveCfg = Release|ARM64 + {68EF78DE-3357-4923-AA90-141CF3EA07BB}.Release|ARM64.Build.0 = Release|ARM64 {68EF78DE-3357-4923-AA90-141CF3EA07BB}.Debug|Win32.ActiveCfg = Debug|Win32 {68EF78DE-3357-4923-AA90-141CF3EA07BB}.Debug|Win32.Build.0 = Debug|Win32 {68EF78DE-3357-4923-AA90-141CF3EA07BB}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/filesys/miniFilter/cancelSafe/cancelSafe.vcxproj b/filesys/miniFilter/cancelSafe/cancelSafe.vcxproj index a141620d..88fbb8a1 100644 --- a/filesys/miniFilter/cancelSafe/cancelSafe.vcxproj +++ b/filesys/miniFilter/cancelSafe/cancelSafe.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ cancelSafe + + cancelSafe + cancelSafe + + cancelSafe + cancelSafe @@ -109,6 +145,28 @@ sha256 + + + %(AdditionalOptions) /map + %(AdditionalDependencies);$(DDK_LIB_PATH)\fltMgr.lib + + + true + Level4 + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE;POOL_NX_OPTIN=1 + + + + + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE;POOL_NX_OPTIN=1 + + + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE;POOL_NX_OPTIN=1 + + + sha256 + + %(AdditionalOptions) /map @@ -131,6 +189,28 @@ sha256 + + + %(AdditionalOptions) /map + %(AdditionalDependencies);$(DDK_LIB_PATH)\fltMgr.lib + + + true + Level4 + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE;POOL_NX_OPTIN=1 + + + + + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE;POOL_NX_OPTIN=1 + + + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE;POOL_NX_OPTIN=1 + + + sha256 + + %(AdditionalOptions) /map @@ -192,4 +272,4 @@ - \ No newline at end of file + diff --git a/filesys/miniFilter/cdo/cdo.sln b/filesys/miniFilter/cdo/cdo.sln index eb72bed8..fa854de7 100644 --- a/filesys/miniFilter/cdo/cdo.sln +++ b/filesys/miniFilter/cdo/cdo.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cdo", "cdo.vcxproj", "{4326 EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {43260D29-12DA-4486-BBA6-FFFB04F796ED}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {43260D29-12DA-4486-BBA6-FFFB04F796ED}.Debug|ARM64.Build.0 = Debug|ARM64 + {43260D29-12DA-4486-BBA6-FFFB04F796ED}.Release|ARM64.ActiveCfg = Release|ARM64 + {43260D29-12DA-4486-BBA6-FFFB04F796ED}.Release|ARM64.Build.0 = Release|ARM64 {43260D29-12DA-4486-BBA6-FFFB04F796ED}.Debug|Win32.ActiveCfg = Debug|Win32 {43260D29-12DA-4486-BBA6-FFFB04F796ED}.Debug|Win32.Build.0 = Debug|Win32 {43260D29-12DA-4486-BBA6-FFFB04F796ED}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/filesys/miniFilter/cdo/cdo.vcxproj b/filesys/miniFilter/cdo/cdo.vcxproj index ca1d7d9a..86a1f945 100644 --- a/filesys/miniFilter/cdo/cdo.vcxproj +++ b/filesys/miniFilter/cdo/cdo.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ cdo + + cdo + cdo + + cdo + cdo @@ -101,6 +137,20 @@ sha256 + + + true + Level4 + + + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\fltMgr.lib + + + sha256 + + true @@ -115,6 +165,20 @@ sha256 + + + true + Level4 + + + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\fltMgr.lib + + + sha256 + + true @@ -161,4 +225,4 @@ - \ No newline at end of file + diff --git a/filesys/miniFilter/change/change.sln b/filesys/miniFilter/change/change.sln index 929eafd1..124a6289 100644 --- a/filesys/miniFilter/change/change.sln +++ b/filesys/miniFilter/change/change.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "change", "change.vcxproj", EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {BC0EEC91-7911-4C29-8B97-BE6E8A3A6E46}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {BC0EEC91-7911-4C29-8B97-BE6E8A3A6E46}.Debug|ARM64.Build.0 = Debug|ARM64 + {BC0EEC91-7911-4C29-8B97-BE6E8A3A6E46}.Release|ARM64.ActiveCfg = Release|ARM64 + {BC0EEC91-7911-4C29-8B97-BE6E8A3A6E46}.Release|ARM64.Build.0 = Release|ARM64 {BC0EEC91-7911-4C29-8B97-BE6E8A3A6E46}.Debug|Win32.ActiveCfg = Debug|Win32 {BC0EEC91-7911-4C29-8B97-BE6E8A3A6E46}.Debug|Win32.Build.0 = Debug|Win32 {BC0EEC91-7911-4C29-8B97-BE6E8A3A6E46}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/filesys/miniFilter/change/change.vcxproj b/filesys/miniFilter/change/change.vcxproj index 58b753f2..49aeae5a 100644 --- a/filesys/miniFilter/change/change.vcxproj +++ b/filesys/miniFilter/change/change.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ change + + change + change + + change + change @@ -108,6 +144,27 @@ sha256 + + + true + Level4 + %(PreprocessorDefinitions) + + + + + %(PreprocessorDefinitions) + + + %(PreprocessorDefinitions) + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\fltMgr.lib + + + sha256 + + true @@ -129,6 +186,27 @@ sha256 + + + true + Level4 + %(PreprocessorDefinitions) + + + + + %(PreprocessorDefinitions) + + + %(PreprocessorDefinitions) + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\fltMgr.lib + + + sha256 + + true @@ -189,4 +267,4 @@ - \ No newline at end of file + diff --git a/filesys/miniFilter/ctx/ctx.sln b/filesys/miniFilter/ctx/ctx.sln index cdbdf426..caf22d94 100644 --- a/filesys/miniFilter/ctx/ctx.sln +++ b/filesys/miniFilter/ctx/ctx.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ctx", "ctx.vcxproj", "{2335 EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {2335901B-9BF4-419C-8BED-808AEEFE5BAE}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {2335901B-9BF4-419C-8BED-808AEEFE5BAE}.Debug|ARM64.Build.0 = Debug|ARM64 + {2335901B-9BF4-419C-8BED-808AEEFE5BAE}.Release|ARM64.ActiveCfg = Release|ARM64 + {2335901B-9BF4-419C-8BED-808AEEFE5BAE}.Release|ARM64.Build.0 = Release|ARM64 {2335901B-9BF4-419C-8BED-808AEEFE5BAE}.Debug|Win32.ActiveCfg = Debug|Win32 {2335901B-9BF4-419C-8BED-808AEEFE5BAE}.Debug|Win32.Build.0 = Debug|Win32 {2335901B-9BF4-419C-8BED-808AEEFE5BAE}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/filesys/miniFilter/ctx/ctx.vcxproj b/filesys/miniFilter/ctx/ctx.vcxproj index 300c95c1..93d19801 100644 --- a/filesys/miniFilter/ctx/ctx.vcxproj +++ b/filesys/miniFilter/ctx/ctx.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ ctx + + ctx + ctx + + ctx + ctx @@ -108,6 +144,27 @@ sha256 + + + true + Level4 + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\fltMgr.lib + + + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + sha256 + + true @@ -129,6 +186,27 @@ sha256 + + + true + Level4 + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\fltMgr.lib + + + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + sha256 + + true @@ -191,4 +269,4 @@ - \ No newline at end of file + diff --git a/filesys/miniFilter/delete/delete.sln b/filesys/miniFilter/delete/delete.sln index 1e175659..7535c78f 100644 --- a/filesys/miniFilter/delete/delete.sln +++ b/filesys/miniFilter/delete/delete.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "delete", "delete.vcxproj", EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {0933F9F0-B579-4691-9611-D28D4D6F6969}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {0933F9F0-B579-4691-9611-D28D4D6F6969}.Debug|ARM64.Build.0 = Debug|ARM64 + {0933F9F0-B579-4691-9611-D28D4D6F6969}.Release|ARM64.ActiveCfg = Release|ARM64 + {0933F9F0-B579-4691-9611-D28D4D6F6969}.Release|ARM64.Build.0 = Release|ARM64 {0933F9F0-B579-4691-9611-D28D4D6F6969}.Debug|Win32.ActiveCfg = Debug|Win32 {0933F9F0-B579-4691-9611-D28D4D6F6969}.Debug|Win32.Build.0 = Debug|Win32 {0933F9F0-B579-4691-9611-D28D4D6F6969}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/filesys/miniFilter/delete/delete.vcxproj b/filesys/miniFilter/delete/delete.vcxproj index a4cb46b0..3b7f9521 100644 --- a/filesys/miniFilter/delete/delete.vcxproj +++ b/filesys/miniFilter/delete/delete.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ delete + + delete + delete + + delete + delete @@ -108,6 +144,27 @@ sha256 + + + true + Level4 + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\fltMgr.lib + + + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + sha256 + + true @@ -129,6 +186,27 @@ sha256 + + + true + Level4 + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\fltMgr.lib + + + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + sha256 + + true @@ -188,4 +266,4 @@ - \ No newline at end of file + diff --git a/filesys/miniFilter/minispy/filter/minispy.vcxproj b/filesys/miniFilter/minispy/filter/minispy.vcxproj index ce4cb737..5eb1a324 100644 --- a/filesys/miniFilter/minispy/filter/minispy.vcxproj +++ b/filesys/miniFilter/minispy/filter/minispy.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ minispy + + minispy + minispy + + minispy + minispy @@ -112,6 +148,31 @@ sha256 + + + %(AdditionalOptions) /map + %(AdditionalDependencies);$(DDK_LIB_PATH)\fltMgr.lib + + + true + Level4 + %(AdditionalIncludeDirectories);..\inc + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE + + + + + %(AdditionalIncludeDirectories);..\inc + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE + + + %(AdditionalIncludeDirectories);..\inc + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE + + + sha256 + + %(AdditionalOptions) /map @@ -137,6 +198,31 @@ sha256 + + + %(AdditionalOptions) /map + %(AdditionalDependencies);$(DDK_LIB_PATH)\fltMgr.lib + + + true + Level4 + %(AdditionalIncludeDirectories);..\inc + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE + + + + + %(AdditionalIncludeDirectories);..\inc + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE + + + %(AdditionalIncludeDirectories);..\inc + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE + + + sha256 + + %(AdditionalOptions) /map @@ -207,4 +293,4 @@ - \ No newline at end of file + diff --git a/filesys/miniFilter/minispy/minispy.sln b/filesys/miniFilter/minispy/minispy.sln index a5043dce..ee71f36e 100644 --- a/filesys/miniFilter/minispy/minispy.sln +++ b/filesys/miniFilter/minispy/minispy.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -13,12 +13,22 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "minispy", "user\minispy.vcx EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {BB97C5A3-10A8-4979-B7CA-D33B8D8F86AF}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {BB97C5A3-10A8-4979-B7CA-D33B8D8F86AF}.Debug|ARM64.Build.0 = Debug|ARM64 + {CF307DC8-96B6-4818-AB94-4EFF2176A02B}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {CF307DC8-96B6-4818-AB94-4EFF2176A02B}.Debug|ARM64.Build.0 = Debug|ARM64 + {BB97C5A3-10A8-4979-B7CA-D33B8D8F86AF}.Release|ARM64.ActiveCfg = Release|ARM64 + {BB97C5A3-10A8-4979-B7CA-D33B8D8F86AF}.Release|ARM64.Build.0 = Release|ARM64 + {CF307DC8-96B6-4818-AB94-4EFF2176A02B}.Release|ARM64.ActiveCfg = Release|ARM64 + {CF307DC8-96B6-4818-AB94-4EFF2176A02B}.Release|ARM64.Build.0 = Release|ARM64 {BB97C5A3-10A8-4979-B7CA-D33B8D8F86AF}.Debug|Win32.ActiveCfg = Debug|Win32 {BB97C5A3-10A8-4979-B7CA-D33B8D8F86AF}.Debug|Win32.Build.0 = Debug|Win32 {BB97C5A3-10A8-4979-B7CA-D33B8D8F86AF}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/filesys/miniFilter/minispy/user/minispy.vcxproj b/filesys/miniFilter/minispy/user/minispy.vcxproj index 3e8556f6..2200fb73 100644 --- a/filesys/miniFilter/minispy/user/minispy.vcxproj +++ b/filesys/miniFilter/minispy/user/minispy.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Desktop + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Desktop + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ minispy + + minispy + minispy + + minispy + minispy @@ -108,6 +144,27 @@ %(AdditionalDependencies);fltLib.lib + + + true + Level4 + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(IFSKIT_INC_PATH);$(DDK_INC_PATH);..\inc + + + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(IFSKIT_INC_PATH);$(DDK_INC_PATH);..\inc + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(IFSKIT_INC_PATH);$(DDK_INC_PATH);..\inc + + + %(AdditionalDependencies);fltLib.lib + + true @@ -129,6 +186,27 @@ %(AdditionalDependencies);fltLib.lib + + + true + Level4 + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(IFSKIT_INC_PATH);$(DDK_INC_PATH);..\inc + + + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(IFSKIT_INC_PATH);$(DDK_INC_PATH);..\inc + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(IFSKIT_INC_PATH);$(DDK_INC_PATH);..\inc + + + %(AdditionalDependencies);fltLib.lib + + true @@ -189,4 +267,4 @@ - \ No newline at end of file + diff --git a/filesys/miniFilter/nullFilter/nullFilter.sln b/filesys/miniFilter/nullFilter/nullFilter.sln index afdbee02..add3865a 100644 --- a/filesys/miniFilter/nullFilter/nullFilter.sln +++ b/filesys/miniFilter/nullFilter/nullFilter.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nullFilter", "nullFilter.vc EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {FB7A1B2D-5BB0-458E-B5B0-FA411CF8C73F}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {FB7A1B2D-5BB0-458E-B5B0-FA411CF8C73F}.Debug|ARM64.Build.0 = Debug|ARM64 + {FB7A1B2D-5BB0-458E-B5B0-FA411CF8C73F}.Release|ARM64.ActiveCfg = Release|ARM64 + {FB7A1B2D-5BB0-458E-B5B0-FA411CF8C73F}.Release|ARM64.Build.0 = Release|ARM64 {FB7A1B2D-5BB0-458E-B5B0-FA411CF8C73F}.Debug|Win32.ActiveCfg = Debug|Win32 {FB7A1B2D-5BB0-458E-B5B0-FA411CF8C73F}.Debug|Win32.Build.0 = Debug|Win32 {FB7A1B2D-5BB0-458E-B5B0-FA411CF8C73F}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/filesys/miniFilter/nullFilter/nullFilter.vcxproj b/filesys/miniFilter/nullFilter/nullFilter.vcxproj index 94d9e7d2..6fb3dd66 100644 --- a/filesys/miniFilter/nullFilter/nullFilter.vcxproj +++ b/filesys/miniFilter/nullFilter/nullFilter.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ nullFilter + + nullFilter + nullFilter + + nullFilter + nullFilter @@ -101,6 +137,20 @@ sha256 + + + true + Level4 + + + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\fltMgr.lib + + + sha256 + + true @@ -115,6 +165,20 @@ sha256 + + + true + Level4 + + + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\fltMgr.lib + + + sha256 + + true @@ -160,4 +224,4 @@ - \ No newline at end of file + diff --git a/filesys/miniFilter/passThrough/passThrough.sln b/filesys/miniFilter/passThrough/passThrough.sln index 18fe204e..f045f19b 100644 --- a/filesys/miniFilter/passThrough/passThrough.sln +++ b/filesys/miniFilter/passThrough/passThrough.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "passThrough", "passThrough. EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D8B8DA25-0E6D-4631-8B25-DBF5B10B45AD}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {D8B8DA25-0E6D-4631-8B25-DBF5B10B45AD}.Debug|ARM64.Build.0 = Debug|ARM64 + {D8B8DA25-0E6D-4631-8B25-DBF5B10B45AD}.Release|ARM64.ActiveCfg = Release|ARM64 + {D8B8DA25-0E6D-4631-8B25-DBF5B10B45AD}.Release|ARM64.Build.0 = Release|ARM64 {D8B8DA25-0E6D-4631-8B25-DBF5B10B45AD}.Debug|Win32.ActiveCfg = Debug|Win32 {D8B8DA25-0E6D-4631-8B25-DBF5B10B45AD}.Debug|Win32.Build.0 = Debug|Win32 {D8B8DA25-0E6D-4631-8B25-DBF5B10B45AD}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/filesys/miniFilter/passThrough/passThrough.vcxproj b/filesys/miniFilter/passThrough/passThrough.vcxproj index 8900fd44..bbad9c91 100644 --- a/filesys/miniFilter/passThrough/passThrough.vcxproj +++ b/filesys/miniFilter/passThrough/passThrough.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ passThrough + + passThrough + passThrough + + passThrough + passThrough @@ -101,6 +137,20 @@ sha256 + + + true + Level4 + + + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\fltMgr.lib + + + sha256 + + true @@ -115,6 +165,20 @@ sha256 + + + true + Level4 + + + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\fltMgr.lib + + + sha256 + + true @@ -160,4 +224,4 @@ - \ No newline at end of file + diff --git a/filesys/miniFilter/scanner/filter/scanner.vcxproj b/filesys/miniFilter/scanner/filter/scanner.vcxproj index 04644758..0957c236 100644 --- a/filesys/miniFilter/scanner/filter/scanner.vcxproj +++ b/filesys/miniFilter/scanner/filter/scanner.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ scanner + + scanner + scanner + + scanner + scanner @@ -111,6 +147,30 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);..\inc + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + + + %(AdditionalIncludeDirectories);..\inc + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + %(AdditionalIncludeDirectories);..\inc + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\fltMgr.lib + + + sha256 + + true @@ -135,6 +195,30 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);..\inc + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + + + %(AdditionalIncludeDirectories);..\inc + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + %(AdditionalIncludeDirectories);..\inc + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\fltMgr.lib + + + sha256 + + true @@ -201,4 +285,4 @@ - \ No newline at end of file + diff --git a/filesys/miniFilter/scanner/scanner.sln b/filesys/miniFilter/scanner/scanner.sln index e03f7317..243da218 100644 --- a/filesys/miniFilter/scanner/scanner.sln +++ b/filesys/miniFilter/scanner/scanner.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -13,12 +13,22 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "scanuser", "user\scanuser.v EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {CDFBA2B4-F7A9-4910-A226-F558EE7315F5}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {CDFBA2B4-F7A9-4910-A226-F558EE7315F5}.Debug|ARM64.Build.0 = Debug|ARM64 + {85EC78BD-4D8B-4982-B635-9BE16674DD48}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {85EC78BD-4D8B-4982-B635-9BE16674DD48}.Debug|ARM64.Build.0 = Debug|ARM64 + {CDFBA2B4-F7A9-4910-A226-F558EE7315F5}.Release|ARM64.ActiveCfg = Release|ARM64 + {CDFBA2B4-F7A9-4910-A226-F558EE7315F5}.Release|ARM64.Build.0 = Release|ARM64 + {85EC78BD-4D8B-4982-B635-9BE16674DD48}.Release|ARM64.ActiveCfg = Release|ARM64 + {85EC78BD-4D8B-4982-B635-9BE16674DD48}.Release|ARM64.Build.0 = Release|ARM64 {CDFBA2B4-F7A9-4910-A226-F558EE7315F5}.Debug|Win32.ActiveCfg = Debug|Win32 {CDFBA2B4-F7A9-4910-A226-F558EE7315F5}.Debug|Win32.Build.0 = Debug|Win32 {CDFBA2B4-F7A9-4910-A226-F558EE7315F5}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/filesys/miniFilter/scanner/user/scanuser.vcxproj b/filesys/miniFilter/scanner/user/scanuser.vcxproj index c2421120..c4bea64a 100644 --- a/filesys/miniFilter/scanner/user/scanuser.vcxproj +++ b/filesys/miniFilter/scanner/user/scanuser.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Desktop + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Desktop + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ scanuser + + scanuser + scanuser + + scanuser + scanuser @@ -108,6 +144,27 @@ %(AdditionalDependencies);fltLib.lib + + + true + Level4 + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(IFSKIT_INC_PATH);$(DDK_INC_PATH);..\inc + + + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(IFSKIT_INC_PATH);$(DDK_INC_PATH);..\inc + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(IFSKIT_INC_PATH);$(DDK_INC_PATH);..\inc + + + %(AdditionalDependencies);fltLib.lib + + true @@ -129,6 +186,27 @@ %(AdditionalDependencies);fltLib.lib + + + true + Level4 + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(IFSKIT_INC_PATH);$(DDK_INC_PATH);..\inc + + + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(IFSKIT_INC_PATH);$(DDK_INC_PATH);..\inc + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(IFSKIT_INC_PATH);$(DDK_INC_PATH);..\inc + + + %(AdditionalDependencies);fltLib.lib + + true @@ -188,4 +266,4 @@ - \ No newline at end of file + diff --git a/filesys/miniFilter/simrep/simrep.sln b/filesys/miniFilter/simrep/simrep.sln index eacfb5a7..c712bcec 100644 --- a/filesys/miniFilter/simrep/simrep.sln +++ b/filesys/miniFilter/simrep/simrep.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "simrep", "simrep.vcxproj", EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {E007014C-F23C-4E49-A483-D3AE86B8B988}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {E007014C-F23C-4E49-A483-D3AE86B8B988}.Debug|ARM64.Build.0 = Debug|ARM64 + {E007014C-F23C-4E49-A483-D3AE86B8B988}.Release|ARM64.ActiveCfg = Release|ARM64 + {E007014C-F23C-4E49-A483-D3AE86B8B988}.Release|ARM64.Build.0 = Release|ARM64 {E007014C-F23C-4E49-A483-D3AE86B8B988}.Debug|Win32.ActiveCfg = Debug|Win32 {E007014C-F23C-4E49-A483-D3AE86B8B988}.Debug|Win32.Build.0 = Debug|Win32 {E007014C-F23C-4E49-A483-D3AE86B8B988}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/filesys/miniFilter/simrep/simrep.vcxproj b/filesys/miniFilter/simrep/simrep.vcxproj index 9ecd7b9b..47ee8c03 100644 --- a/filesys/miniFilter/simrep/simrep.vcxproj +++ b/filesys/miniFilter/simrep/simrep.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ simrep + + simrep + simrep + + simrep + simrep @@ -108,6 +144,27 @@ sha256 + + + true + Level4 + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\fltMgr.lib + + + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + sha256 + + true @@ -129,6 +186,27 @@ sha256 + + + true + Level4 + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\fltMgr.lib + + + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + sha256 + + true @@ -188,4 +266,4 @@ - \ No newline at end of file + diff --git a/filesys/miniFilter/swapBuffers/swapBuffers.sln b/filesys/miniFilter/swapBuffers/swapBuffers.sln index 75941f53..682282d4 100644 --- a/filesys/miniFilter/swapBuffers/swapBuffers.sln +++ b/filesys/miniFilter/swapBuffers/swapBuffers.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "swapBuffers", "swapBuffers. EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {85E4144B-986D-4B01-BA1C-2536DCF175DD}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {85E4144B-986D-4B01-BA1C-2536DCF175DD}.Debug|ARM64.Build.0 = Debug|ARM64 + {85E4144B-986D-4B01-BA1C-2536DCF175DD}.Release|ARM64.ActiveCfg = Release|ARM64 + {85E4144B-986D-4B01-BA1C-2536DCF175DD}.Release|ARM64.Build.0 = Release|ARM64 {85E4144B-986D-4B01-BA1C-2536DCF175DD}.Debug|Win32.ActiveCfg = Debug|Win32 {85E4144B-986D-4B01-BA1C-2536DCF175DD}.Debug|Win32.Build.0 = Debug|Win32 {85E4144B-986D-4B01-BA1C-2536DCF175DD}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/filesys/miniFilter/swapBuffers/swapBuffers.vcxproj b/filesys/miniFilter/swapBuffers/swapBuffers.vcxproj index 6c693422..66ee19ba 100644 --- a/filesys/miniFilter/swapBuffers/swapBuffers.vcxproj +++ b/filesys/miniFilter/swapBuffers/swapBuffers.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ swapBuffers + + swapBuffers + swapBuffers + + swapBuffers + swapBuffers @@ -108,6 +144,27 @@ sha256 + + + true + Level4 + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE;POOL_NX_OPTIN=1 + + + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\fltMgr.lib + + + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE;POOL_NX_OPTIN=1 + + + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE;POOL_NX_OPTIN=1 + + + sha256 + + true @@ -129,6 +186,27 @@ sha256 + + + true + Level4 + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE;POOL_NX_OPTIN=1 + + + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\fltMgr.lib + + + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE;POOL_NX_OPTIN=1 + + + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE;POOL_NX_OPTIN=1 + + + sha256 + + true @@ -188,4 +266,4 @@ - \ No newline at end of file + diff --git a/general/PLX9x5x/PLX9x5x.sln b/general/PLX9x5x/PLX9x5x.sln index 13f43e29..a6df137c 100644 --- a/general/PLX9x5x/PLX9x5x.sln +++ b/general/PLX9x5x/PLX9x5x.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -13,12 +13,22 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "plx", "test\plx.vcxproj", " EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {501DB362-22B7-4447-9F0B-690EE0F83CF3}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {501DB362-22B7-4447-9F0B-690EE0F83CF3}.Debug|ARM64.Build.0 = Debug|ARM64 + {EFB89CBA-931F-426E-A7C0-50374FA9EA58}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {EFB89CBA-931F-426E-A7C0-50374FA9EA58}.Debug|ARM64.Build.0 = Debug|ARM64 + {501DB362-22B7-4447-9F0B-690EE0F83CF3}.Release|ARM64.ActiveCfg = Release|ARM64 + {501DB362-22B7-4447-9F0B-690EE0F83CF3}.Release|ARM64.Build.0 = Release|ARM64 + {EFB89CBA-931F-426E-A7C0-50374FA9EA58}.Release|ARM64.ActiveCfg = Release|ARM64 + {EFB89CBA-931F-426E-A7C0-50374FA9EA58}.Release|ARM64.Build.0 = Release|ARM64 {501DB362-22B7-4447-9F0B-690EE0F83CF3}.Debug|Win32.ActiveCfg = Debug|Win32 {501DB362-22B7-4447-9F0B-690EE0F83CF3}.Debug|Win32.Build.0 = Debug|Win32 {501DB362-22B7-4447-9F0B-690EE0F83CF3}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/general/PLX9x5x/sys/Pci9x5x.vcxproj b/general/PLX9x5x/sys/Pci9x5x.vcxproj index d319a284..dcaec04e 100644 --- a/general/PLX9x5x/sys/Pci9x5x.vcxproj +++ b/general/PLX9x5x/sys/Pci9x5x.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -36,6 +44,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -44,6 +60,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -67,9 +91,15 @@ + + + + + + @@ -147,9 +177,15 @@ Pci9x5x + + Pci9x5x + Pci9x5x + + Pci9x5x + Pci9x5x @@ -164,6 +200,14 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib @@ -172,6 +216,14 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib @@ -194,12 +246,24 @@ + + + + + + + + + + + + @@ -234,4 +298,4 @@ - \ No newline at end of file + diff --git a/general/PLX9x5x/test/plx.vcxproj b/general/PLX9x5x/test/plx.vcxproj index 5a01f72e..1f0d761e 100644 --- a/general/PLX9x5x/test/plx.vcxproj +++ b/general/PLX9x5x/test/plx.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Desktop + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Desktop + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -82,9 +112,15 @@ plx + + plx + plx + + plx + plx @@ -113,6 +149,28 @@ sha256 + + + %(PreprocessorDefinitions);BUILT_IN_DDK=1 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\sys + + + + + %(PreprocessorDefinitions);BUILT_IN_DDK=1 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\sys + + + %(PreprocessorDefinitions);BUILT_IN_DDK=1 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\sys + + + %(AdditionalDependencies);setupapi.lib;user32.lib + + + sha256 + + %(PreprocessorDefinitions);BUILT_IN_DDK=1 @@ -135,6 +193,28 @@ sha256 + + + %(PreprocessorDefinitions);BUILT_IN_DDK=1 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\sys + + + + + %(PreprocessorDefinitions);BUILT_IN_DDK=1 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\sys + + + %(PreprocessorDefinitions);BUILT_IN_DDK=1 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\sys + + + %(AdditionalDependencies);setupapi.lib;user32.lib + + + sha256 + + %(PreprocessorDefinitions);BUILT_IN_DDK=1 @@ -192,4 +272,4 @@ - \ No newline at end of file + diff --git a/general/SystemDma/wdm/SystemDma.sln b/general/SystemDma/wdm/SystemDma.sln index 86e9aa7c..c9544d83 100644 --- a/general/SystemDma/wdm/SystemDma.sln +++ b/general/SystemDma/wdm/SystemDma.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -13,12 +13,22 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SDma", "sys\SDma.vcxproj", EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {6E5E2ADE-D50C-41DA-ACFB-FBA8151AED01}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {6E5E2ADE-D50C-41DA-ACFB-FBA8151AED01}.Debug|ARM64.Build.0 = Debug|ARM64 + {1523D522-CC98-45CD-82A8-8A3CF2B974DC}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {1523D522-CC98-45CD-82A8-8A3CF2B974DC}.Debug|ARM64.Build.0 = Debug|ARM64 + {6E5E2ADE-D50C-41DA-ACFB-FBA8151AED01}.Release|ARM64.ActiveCfg = Release|ARM64 + {6E5E2ADE-D50C-41DA-ACFB-FBA8151AED01}.Release|ARM64.Build.0 = Release|ARM64 + {1523D522-CC98-45CD-82A8-8A3CF2B974DC}.Release|ARM64.ActiveCfg = Release|ARM64 + {1523D522-CC98-45CD-82A8-8A3CF2B974DC}.Release|ARM64.Build.0 = Release|ARM64 {6E5E2ADE-D50C-41DA-ACFB-FBA8151AED01}.Debug|Win32.ActiveCfg = Debug|Win32 {6E5E2ADE-D50C-41DA-ACFB-FBA8151AED01}.Debug|Win32.Build.0 = Debug|Win32 {6E5E2ADE-D50C-41DA-ACFB-FBA8151AED01}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/general/SystemDma/wdm/exe/SystemDmaApp.vcxproj b/general/SystemDma/wdm/exe/SystemDmaApp.vcxproj index eaf152f4..716ea8cd 100644 --- a/general/SystemDma/wdm/exe/SystemDmaApp.vcxproj +++ b/general/SystemDma/wdm/exe/SystemDmaApp.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ SystemDmaApp + + SystemDmaApp + SystemDmaApp + + SystemDmaApp + SystemDmaApp @@ -100,6 +136,19 @@ %(AdditionalIncludeDirectories);..\sys + + + true + Level4 + %(AdditionalIncludeDirectories);..\sys + + + %(AdditionalIncludeDirectories);..\sys + + + %(AdditionalIncludeDirectories);..\sys + + true @@ -113,6 +162,19 @@ %(AdditionalIncludeDirectories);..\sys + + + true + Level4 + %(AdditionalIncludeDirectories);..\sys + + + %(AdditionalIncludeDirectories);..\sys + + + %(AdditionalIncludeDirectories);..\sys + + true @@ -145,12 +207,24 @@ + + + + + + + + + + + + @@ -180,4 +254,4 @@ - \ No newline at end of file + diff --git a/general/SystemDma/wdm/sys/SDma.vcxproj b/general/SystemDma/wdm/sys/SDma.vcxproj index 57c4d115..8eb632db 100644 --- a/general/SystemDma/wdm/sys/SDma.vcxproj +++ b/general/SystemDma/wdm/sys/SDma.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ SDma + + SDma + SDma + + SDma + SDma @@ -98,6 +134,17 @@ sha256 + + + true + Level4 + + + + + sha256 + + true @@ -109,6 +156,17 @@ sha256 + + + true + Level4 + + + + + sha256 + + true @@ -148,4 +206,4 @@ - \ No newline at end of file + diff --git a/general/cancel/cancel.sln b/general/cancel/cancel.sln index d3fec9cb..5ed0e572 100644 --- a/general/cancel/cancel.sln +++ b/general/cancel/cancel.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -17,12 +17,26 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cancel", "startio\cancel.vc EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A1A90123-A9E1-4F81-BCC5-7D0AFCB29BAC}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {A1A90123-A9E1-4F81-BCC5-7D0AFCB29BAC}.Debug|ARM64.Build.0 = Debug|ARM64 + {5525BABA-1BF1-47B1-93E2-F7A0F62C06C7}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {5525BABA-1BF1-47B1-93E2-F7A0F62C06C7}.Debug|ARM64.Build.0 = Debug|ARM64 + {325B0DEE-27D9-402C-AD6B-42B1B3AEAE8E}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {325B0DEE-27D9-402C-AD6B-42B1B3AEAE8E}.Debug|ARM64.Build.0 = Debug|ARM64 + {A1A90123-A9E1-4F81-BCC5-7D0AFCB29BAC}.Release|ARM64.ActiveCfg = Release|ARM64 + {A1A90123-A9E1-4F81-BCC5-7D0AFCB29BAC}.Release|ARM64.Build.0 = Release|ARM64 + {5525BABA-1BF1-47B1-93E2-F7A0F62C06C7}.Release|ARM64.ActiveCfg = Release|ARM64 + {5525BABA-1BF1-47B1-93E2-F7A0F62C06C7}.Release|ARM64.Build.0 = Release|ARM64 + {325B0DEE-27D9-402C-AD6B-42B1B3AEAE8E}.Release|ARM64.ActiveCfg = Release|ARM64 + {325B0DEE-27D9-402C-AD6B-42B1B3AEAE8E}.Release|ARM64.Build.0 = Release|ARM64 {A1A90123-A9E1-4F81-BCC5-7D0AFCB29BAC}.Debug|Win32.ActiveCfg = Debug|Win32 {A1A90123-A9E1-4F81-BCC5-7D0AFCB29BAC}.Debug|Win32.Build.0 = Debug|Win32 {A1A90123-A9E1-4F81-BCC5-7D0AFCB29BAC}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/general/cancel/exe/canclapp.vcxproj b/general/cancel/exe/canclapp.vcxproj index e1c06591..39dba97a 100644 --- a/general/cancel/exe/canclapp.vcxproj +++ b/general/cancel/exe/canclapp.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ canclapp + + canclapp + canclapp + + canclapp + canclapp @@ -102,6 +138,21 @@ %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\sys + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\sys + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\sys + MultiThreaded + MultiThreadedDebug + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\sys + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\sys @@ -117,6 +168,21 @@ %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\sys + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\sys + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\sys + MultiThreaded + MultiThreadedDebug + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\sys + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\sys @@ -164,4 +230,4 @@ - \ No newline at end of file + diff --git a/general/cancel/startio/cancel.vcxproj b/general/cancel/startio/cancel.vcxproj index 80f03006..7cbbc428 100644 --- a/general/cancel/startio/cancel.vcxproj +++ b/general/cancel/startio/cancel.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ cancel + + cancel + cancel + + cancel + cancel @@ -102,6 +138,21 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\wdmsec.lib + + + true + Level4 + + + POOL_NX_OPTIN;POOL_ZERO_DOWN_LEVEL_SUPPORT;%(PreprocessorDefinitions) + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\wdmsec.lib @@ -117,6 +168,21 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\wdmsec.lib + + + true + Level4 + + + POOL_NX_OPTIN;POOL_ZERO_DOWN_LEVEL_SUPPORT;%(PreprocessorDefinitions) + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\wdmsec.lib diff --git a/general/cancel/sys/cancel.vcxproj b/general/cancel/sys/cancel.vcxproj index e10bd582..a87bbc32 100644 --- a/general/cancel/sys/cancel.vcxproj +++ b/general/cancel/sys/cancel.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ cancel + + cancel + cancel + + cancel + cancel @@ -102,6 +138,21 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\wdmsec.lib + + + true + Level4 + + + POOL_NX_OPTIN;POOL_ZERO_DOWN_LEVEL_SUPPORT;%(PreprocessorDefinitions) + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\wdmsec.lib @@ -117,6 +168,21 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\wdmsec.lib + + + true + Level4 + + + POOL_NX_OPTIN;POOL_ZERO_DOWN_LEVEL_SUPPORT;%(PreprocessorDefinitions) + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\wdmsec.lib diff --git a/general/echo/kmdf/driver/AutoSync/echo.vcxproj b/general/echo/kmdf/driver/AutoSync/echo.vcxproj index 09263c87..579039c7 100644 --- a/general/echo/kmdf/driver/AutoSync/echo.vcxproj +++ b/general/echo/kmdf/driver/AutoSync/echo.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -79,9 +109,15 @@ echo + + echo + echo + + echo + echo @@ -104,6 +140,22 @@ sha256 + + + %(AdditionalIncludeDirectories);..\..\exe + + + %(AdditionalIncludeDirectories);..\..\exe + + + + + %(AdditionalIncludeDirectories);..\..\exe + + + sha256 + + %(AdditionalIncludeDirectories);..\..\exe @@ -120,6 +172,22 @@ sha256 + + + %(AdditionalIncludeDirectories);..\..\exe + + + %(AdditionalIncludeDirectories);..\..\exe + + + + + %(AdditionalIncludeDirectories);..\..\exe + + + sha256 + + %(AdditionalIncludeDirectories);..\..\exe diff --git a/general/echo/kmdf/driver/DriverSync/echo_2.vcxproj b/general/echo/kmdf/driver/DriverSync/echo_2.vcxproj index b5da58a8..8451c201 100644 --- a/general/echo/kmdf/driver/DriverSync/echo_2.vcxproj +++ b/general/echo/kmdf/driver/DriverSync/echo_2.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -79,9 +109,15 @@ echo_2 + + echo_2 + echo_2 + + echo_2 + echo_2 @@ -107,6 +143,25 @@ sha256 + + + %(AdditionalIncludeDirectories);..\..\exe + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalIncludeDirectories);..\..\exe + %(AdditionalIncludeDirectories);..\..\inc + + + + + %(AdditionalIncludeDirectories);..\..\exe + %(AdditionalIncludeDirectories);..\..\inc + + + sha256 + + %(AdditionalIncludeDirectories);..\..\exe @@ -126,6 +181,25 @@ sha256 + + + %(AdditionalIncludeDirectories);..\..\exe + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalIncludeDirectories);..\..\exe + %(AdditionalIncludeDirectories);..\..\inc + + + + + %(AdditionalIncludeDirectories);..\..\exe + %(AdditionalIncludeDirectories);..\..\inc + + + sha256 + + %(AdditionalIncludeDirectories);..\..\exe @@ -182,4 +256,4 @@ - \ No newline at end of file + diff --git a/general/echo/kmdf/exe/echoapp.vcxproj b/general/echo/kmdf/exe/echoapp.vcxproj index bdbd9cc5..bb88d47d 100644 --- a/general/echo/kmdf/exe/echoapp.vcxproj +++ b/general/echo/kmdf/exe/echoapp.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ echoapp + + echoapp + echoapp + + echoapp + echoapp @@ -109,6 +145,28 @@ sha256 + + + %(AdditionalDependencies);mincore.lib + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH) + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH) + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH) + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + sha256 + + %(AdditionalDependencies);mincore.lib @@ -131,6 +189,28 @@ sha256 + + + %(AdditionalDependencies);mincore.lib + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH) + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH) + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH) + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + sha256 + + %(AdditionalDependencies);mincore.lib @@ -191,4 +271,4 @@ - \ No newline at end of file + diff --git a/general/echo/kmdf/kmdfecho.sln b/general/echo/kmdf/kmdfecho.sln index fc7a8245..4840ef4a 100644 --- a/general/echo/kmdf/kmdfecho.sln +++ b/general/echo/kmdf/kmdfecho.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -19,12 +19,26 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "echo_2", "driver\DriverSync EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9F70D0C8-AA7D-49A2-BF1C-C09619329F69}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {9F70D0C8-AA7D-49A2-BF1C-C09619329F69}.Debug|ARM64.Build.0 = Debug|ARM64 + {44FE3C21-35D7-4253-B15A-3E0F6AAB8B66}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {44FE3C21-35D7-4253-B15A-3E0F6AAB8B66}.Debug|ARM64.Build.0 = Debug|ARM64 + {8E09C05F-B634-49BE-96C9-64682605DFB0}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {8E09C05F-B634-49BE-96C9-64682605DFB0}.Debug|ARM64.Build.0 = Debug|ARM64 + {9F70D0C8-AA7D-49A2-BF1C-C09619329F69}.Release|ARM64.ActiveCfg = Release|ARM64 + {9F70D0C8-AA7D-49A2-BF1C-C09619329F69}.Release|ARM64.Build.0 = Release|ARM64 + {44FE3C21-35D7-4253-B15A-3E0F6AAB8B66}.Release|ARM64.ActiveCfg = Release|ARM64 + {44FE3C21-35D7-4253-B15A-3E0F6AAB8B66}.Release|ARM64.Build.0 = Release|ARM64 + {8E09C05F-B634-49BE-96C9-64682605DFB0}.Release|ARM64.ActiveCfg = Release|ARM64 + {8E09C05F-B634-49BE-96C9-64682605DFB0}.Release|ARM64.Build.0 = Release|ARM64 {9F70D0C8-AA7D-49A2-BF1C-C09619329F69}.Debug|Win32.ActiveCfg = Debug|Win32 {9F70D0C8-AA7D-49A2-BF1C-C09619329F69}.Debug|Win32.Build.0 = Debug|Win32 {9F70D0C8-AA7D-49A2-BF1C-C09619329F69}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/general/echo/umdf2/driver/AutoSync/echo.vcxproj b/general/echo/umdf2/driver/AutoSync/echo.vcxproj index fcc13593..b57617f6 100644 --- a/general/echo/umdf2/driver/AutoSync/echo.vcxproj +++ b/general/echo/umdf2/driver/AutoSync/echo.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + False + Universal + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 True @@ -43,6 +59,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + True + Windows Driver + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -79,11 +109,19 @@ echo + + echo + echo + + echo + + + echo @@ -109,6 +147,25 @@ sha256 + + + %(AdditionalIncludeDirectories);..\..\exe + + + %(AdditionalIncludeDirectories);..\..\exe + + + + + %(AdditionalIncludeDirectories);..\..\exe + + + %(AdditionalDependencies);mincore.lib + + + sha256 + + %(AdditionalIncludeDirectories);..\..\exe @@ -128,6 +185,25 @@ sha256 + + + %(AdditionalIncludeDirectories);..\..\exe + + + %(AdditionalIncludeDirectories);..\..\exe + + + + + %(AdditionalIncludeDirectories);..\..\exe + + + %(AdditionalDependencies);mincore.lib + + + sha256 + + %(AdditionalIncludeDirectories);..\..\exe @@ -184,4 +260,4 @@ - \ No newline at end of file + diff --git a/general/echo/umdf2/exe/echoapp.vcxproj b/general/echo/umdf2/exe/echoapp.vcxproj index bdbd9cc5..bb88d47d 100644 --- a/general/echo/umdf2/exe/echoapp.vcxproj +++ b/general/echo/umdf2/exe/echoapp.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ echoapp + + echoapp + echoapp + + echoapp + echoapp @@ -109,6 +145,28 @@ sha256 + + + %(AdditionalDependencies);mincore.lib + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH) + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH) + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH) + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + sha256 + + %(AdditionalDependencies);mincore.lib @@ -131,6 +189,28 @@ sha256 + + + %(AdditionalDependencies);mincore.lib + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH) + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH) + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH) + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + sha256 + + %(AdditionalDependencies);mincore.lib @@ -191,4 +271,4 @@ - \ No newline at end of file + diff --git a/general/echo/umdf2/umdf2echo.sln b/general/echo/umdf2/umdf2echo.sln index d1d8aea6..24be5df3 100644 --- a/general/echo/umdf2/umdf2echo.sln +++ b/general/echo/umdf2/umdf2echo.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -15,12 +15,22 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "echo", "driver\AutoSync\ech EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {4500713F-105B-4F35-9FC9-85D30E7C3F2D}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {4500713F-105B-4F35-9FC9-85D30E7C3F2D}.Debug|ARM64.Build.0 = Debug|ARM64 + {82306592-0B90-44A7-AC88-F75A9E98E645}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {82306592-0B90-44A7-AC88-F75A9E98E645}.Debug|ARM64.Build.0 = Debug|ARM64 + {4500713F-105B-4F35-9FC9-85D30E7C3F2D}.Release|ARM64.ActiveCfg = Release|ARM64 + {4500713F-105B-4F35-9FC9-85D30E7C3F2D}.Release|ARM64.Build.0 = Release|ARM64 + {82306592-0B90-44A7-AC88-F75A9E98E645}.Release|ARM64.ActiveCfg = Release|ARM64 + {82306592-0B90-44A7-AC88-F75A9E98E645}.Release|ARM64.Build.0 = Release|ARM64 {4500713F-105B-4F35-9FC9-85D30E7C3F2D}.Debug|Win32.ActiveCfg = Debug|Win32 {4500713F-105B-4F35-9FC9-85D30E7C3F2D}.Debug|Win32.Build.0 = Debug|Win32 {4500713F-105B-4F35-9FC9-85D30E7C3F2D}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/general/event/eventsample.sln b/general/event/eventsample.sln index 3bb164b2..3d1535ce 100644 --- a/general/event/eventsample.sln +++ b/general/event/eventsample.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -13,12 +13,22 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "event", "wdm\event.vcxproj" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {43F430EA-B1A7-4A80-B390-121C1C5A99C4}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {43F430EA-B1A7-4A80-B390-121C1C5A99C4}.Debug|ARM64.Build.0 = Debug|ARM64 + {21F8EA86-F950-4D2D-B256-721B3151157A}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {21F8EA86-F950-4D2D-B256-721B3151157A}.Debug|ARM64.Build.0 = Debug|ARM64 + {43F430EA-B1A7-4A80-B390-121C1C5A99C4}.Release|ARM64.ActiveCfg = Release|ARM64 + {43F430EA-B1A7-4A80-B390-121C1C5A99C4}.Release|ARM64.Build.0 = Release|ARM64 + {21F8EA86-F950-4D2D-B256-721B3151157A}.Release|ARM64.ActiveCfg = Release|ARM64 + {21F8EA86-F950-4D2D-B256-721B3151157A}.Release|ARM64.Build.0 = Release|ARM64 {43F430EA-B1A7-4A80-B390-121C1C5A99C4}.Debug|Win32.ActiveCfg = Debug|Win32 {43F430EA-B1A7-4A80-B390-121C1C5A99C4}.Debug|Win32.Build.0 = Debug|Win32 {43F430EA-B1A7-4A80-B390-121C1C5A99C4}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/general/event/exe/event.vcxproj b/general/event/exe/event.vcxproj index 03a276be..3e578fc9 100644 --- a/general/event/exe/event.vcxproj +++ b/general/event/exe/event.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ event + + event + event + + event + event @@ -102,6 +138,21 @@ %(AdditionalIncludeDirectories);..\wdm + + + true + Level4 + %(AdditionalIncludeDirectories);..\wdm + + + + + %(AdditionalIncludeDirectories);..\wdm + + + %(AdditionalIncludeDirectories);..\wdm + + true @@ -117,6 +168,21 @@ %(AdditionalIncludeDirectories);..\wdm + + + true + Level4 + %(AdditionalIncludeDirectories);..\wdm + + + + + %(AdditionalIncludeDirectories);..\wdm + + + %(AdditionalIncludeDirectories);..\wdm + + true @@ -164,4 +230,4 @@ - \ No newline at end of file + diff --git a/general/event/wdm/event.vcxproj b/general/event/wdm/event.vcxproj index cf701e3c..8f60704d 100644 --- a/general/event/wdm/event.vcxproj +++ b/general/event/wdm/event.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ event + + event + event + + event + event @@ -94,6 +130,13 @@ Level4 + + + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + true + Level4 + + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 @@ -101,6 +144,13 @@ Level4 + + + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + true + Level4 + + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 @@ -130,6 +180,17 @@ sha256 + + + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + POOL_NX_OPTIN;POOL_ZERO_DOWN_LEVEL_SUPPORT;%(PreprocessorDefinitions) + + + sha256 + + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 @@ -141,6 +202,17 @@ sha256 + + + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 + + + POOL_NX_OPTIN;POOL_ZERO_DOWN_LEVEL_SUPPORT;%(PreprocessorDefinitions) + + + sha256 + + %(PreprocessorDefinitions);POOL_NX_OPTIN=1 diff --git a/general/ioctl/kmdf/exe/nonpnpapp.vcxproj b/general/ioctl/kmdf/exe/nonpnpapp.vcxproj index 0fd29fb5..ef34735c 100644 --- a/general/ioctl/kmdf/exe/nonpnpapp.vcxproj +++ b/general/ioctl/kmdf/exe/nonpnpapp.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -36,6 +44,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -44,6 +60,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -67,9 +91,15 @@ + + + + + + @@ -84,9 +114,15 @@ nonpnpapp + + nonpnpapp + nonpnpapp + + nonpnpapp + nonpnpapp @@ -118,6 +154,31 @@ sha256 + + + %(AdditionalDependencies);setupapi.lib;user32.lib + + + %(AdditionalIncludeDirectories);..\sys + %(PreprocessorDefinitions);KMDF_VERSION_MAJOR=1;KMDF_VERSION_MINOR=11 + %(AdditionalIncludeDirectories);$(WDKContentRoot)\Include\wdf\kmdf\1.11 + + + %(AdditionalIncludeDirectories);..\sys + %(PreprocessorDefinitions);KMDF_VERSION_MAJOR=1;KMDF_VERSION_MINOR=11 + %(AdditionalIncludeDirectories);$(WDKContentRoot)\Include\wdf\kmdf\1.11 + + + + + %(AdditionalIncludeDirectories);..\sys + %(PreprocessorDefinitions);KMDF_VERSION_MAJOR=1;KMDF_VERSION_MINOR=11 + %(AdditionalIncludeDirectories);$(WDKContentRoot)\Include\wdf\kmdf\1.11 + + + sha256 + + %(AdditionalDependencies);setupapi.lib;user32.lib @@ -143,6 +204,31 @@ sha256 + + + %(AdditionalDependencies);setupapi.lib;user32.lib + + + %(AdditionalIncludeDirectories);..\sys + %(PreprocessorDefinitions);KMDF_VERSION_MAJOR=1;KMDF_VERSION_MINOR=11 + %(AdditionalIncludeDirectories);$(WDKContentRoot)\Include\wdf\kmdf\1.11 + + + %(AdditionalIncludeDirectories);..\sys + %(PreprocessorDefinitions);KMDF_VERSION_MAJOR=1;KMDF_VERSION_MINOR=11 + %(AdditionalIncludeDirectories);$(WDKContentRoot)\Include\wdf\kmdf\1.11 + + + + + %(AdditionalIncludeDirectories);..\sys + %(PreprocessorDefinitions);KMDF_VERSION_MAJOR=1;KMDF_VERSION_MINOR=11 + %(AdditionalIncludeDirectories);$(WDKContentRoot)\Include\wdf\kmdf\1.11 + + + sha256 + + %(AdditionalDependencies);setupapi.lib;user32.lib @@ -206,4 +292,4 @@ - \ No newline at end of file + diff --git a/general/ioctl/kmdf/ioctl.sln b/general/ioctl/kmdf/ioctl.sln index 33b0a089..250299bc 100644 --- a/general/ioctl/kmdf/ioctl.sln +++ b/general/ioctl/kmdf/ioctl.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -13,12 +13,22 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nonpnp", "sys\nonpnp.vcxpro EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {18A38FF8-1227-4F3B-997B-A83A6E4CFD20}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {18A38FF8-1227-4F3B-997B-A83A6E4CFD20}.Debug|ARM64.Build.0 = Debug|ARM64 + {50EE7E00-D19A-4741-9440-33BECFCF6BED}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {50EE7E00-D19A-4741-9440-33BECFCF6BED}.Debug|ARM64.Build.0 = Debug|ARM64 + {18A38FF8-1227-4F3B-997B-A83A6E4CFD20}.Release|ARM64.ActiveCfg = Release|ARM64 + {18A38FF8-1227-4F3B-997B-A83A6E4CFD20}.Release|ARM64.Build.0 = Release|ARM64 + {50EE7E00-D19A-4741-9440-33BECFCF6BED}.Release|ARM64.ActiveCfg = Release|ARM64 + {50EE7E00-D19A-4741-9440-33BECFCF6BED}.Release|ARM64.Build.0 = Release|ARM64 {18A38FF8-1227-4F3B-997B-A83A6E4CFD20}.Debug|Win32.ActiveCfg = Debug|Win32 {18A38FF8-1227-4F3B-997B-A83A6E4CFD20}.Debug|Win32.Build.0 = Debug|Win32 {18A38FF8-1227-4F3B-997B-A83A6E4CFD20}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/general/ioctl/kmdf/sys/nonpnp.vcxproj b/general/ioctl/kmdf/sys/nonpnp.vcxproj index 6050a825..07b967f4 100644 --- a/general/ioctl/kmdf/sys/nonpnp.vcxproj +++ b/general/ioctl/kmdf/sys/nonpnp.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -92,9 +122,15 @@ nonpnp + + nonpnp + nonpnp + + nonpnp + nonpnp @@ -123,6 +159,28 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\wdmsec.lib + + + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE + %(AdditionalIncludeDirectories);.. + + + + + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE + %(AdditionalIncludeDirectories);.. + + + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE + %(AdditionalIncludeDirectories);.. + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\wdmsec.lib @@ -145,6 +203,28 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\wdmsec.lib + + + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE + %(AdditionalIncludeDirectories);.. + + + + + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE + %(AdditionalIncludeDirectories);.. + + + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE + %(AdditionalIncludeDirectories);.. + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\wdmsec.lib @@ -205,4 +285,4 @@ - \ No newline at end of file + diff --git a/general/ioctl/wdm/exe/ioctlapp.vcxproj b/general/ioctl/wdm/exe/ioctlapp.vcxproj index 582af4ca..aaeb0a0d 100644 --- a/general/ioctl/wdm/exe/ioctlapp.vcxproj +++ b/general/ioctl/wdm/exe/ioctlapp.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ ioctlapp + + ioctlapp + ioctlapp + + ioctlapp + ioctlapp @@ -100,6 +136,19 @@ %(AdditionalIncludeDirectories);..\ + + + true + Level4 + %(AdditionalIncludeDirectories);..\ + + + %(AdditionalIncludeDirectories);..\ + + + %(AdditionalIncludeDirectories);..\ + + true @@ -113,6 +162,19 @@ %(AdditionalIncludeDirectories);..\ + + + true + Level4 + %(AdditionalIncludeDirectories);..\ + + + %(AdditionalIncludeDirectories);..\ + + + %(AdditionalIncludeDirectories);..\ + + true @@ -145,12 +207,24 @@ + + + + + + + + + + + + @@ -180,4 +254,4 @@ - \ No newline at end of file + diff --git a/general/ioctl/wdm/ioctl.sln b/general/ioctl/wdm/ioctl.sln index e50c578c..7b06e5e2 100644 --- a/general/ioctl/wdm/ioctl.sln +++ b/general/ioctl/wdm/ioctl.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -13,12 +13,22 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sioctl", "sys\sioctl.vcxpro EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {61899E58-10C2-4EB1-9508-58AE7DC3B3A9}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {61899E58-10C2-4EB1-9508-58AE7DC3B3A9}.Debug|ARM64.Build.0 = Debug|ARM64 + {29BD96E0-B6C5-42A0-B683-FD9740810699}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {29BD96E0-B6C5-42A0-B683-FD9740810699}.Debug|ARM64.Build.0 = Debug|ARM64 + {61899E58-10C2-4EB1-9508-58AE7DC3B3A9}.Release|ARM64.ActiveCfg = Release|ARM64 + {61899E58-10C2-4EB1-9508-58AE7DC3B3A9}.Release|ARM64.Build.0 = Release|ARM64 + {29BD96E0-B6C5-42A0-B683-FD9740810699}.Release|ARM64.ActiveCfg = Release|ARM64 + {29BD96E0-B6C5-42A0-B683-FD9740810699}.Release|ARM64.Build.0 = Release|ARM64 {61899E58-10C2-4EB1-9508-58AE7DC3B3A9}.Debug|Win32.ActiveCfg = Debug|Win32 {61899E58-10C2-4EB1-9508-58AE7DC3B3A9}.Debug|Win32.Build.0 = Debug|Win32 {61899E58-10C2-4EB1-9508-58AE7DC3B3A9}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/general/ioctl/wdm/sys/sioctl.vcxproj b/general/ioctl/wdm/sys/sioctl.vcxproj index 8781185f..afbe6d97 100644 --- a/general/ioctl/wdm/sys/sioctl.vcxproj +++ b/general/ioctl/wdm/sys/sioctl.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ sioctl + + sioctl + sioctl + + sioctl + sioctl @@ -98,6 +134,17 @@ sha256 + + + true + Level4 + + + + + sha256 + + true @@ -109,6 +156,17 @@ sha256 + + + true + Level4 + + + + + sha256 + + true @@ -148,4 +206,4 @@ - \ No newline at end of file + diff --git a/general/obcallback/control/ObCallbackTestCtrl.vcxproj b/general/obcallback/control/ObCallbackTestCtrl.vcxproj index 80b7eba8..2260cd5b 100644 --- a/general/obcallback/control/ObCallbackTestCtrl.vcxproj +++ b/general/obcallback/control/ObCallbackTestCtrl.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -80,11 +110,21 @@ 0x0A00 0x0A000000 + + ObCallbackTestCtrl + 0x0A00 + 0x0A000000 + ObCallbackTestCtrl 0x0A00 0x0A000000 + + ObCallbackTestCtrl + 0x0A00 + 0x0A000000 + ObCallbackTestCtrl 0x0A00 @@ -102,6 +142,13 @@ Level4 + + + Disabled + true + Level4 + + Disabled @@ -109,6 +156,13 @@ Level4 + + + Disabled + true + Level4 + + Disabled @@ -129,12 +183,24 @@ %(AdditionalDependencies);ntdll.lib;kernel32.lib;advapi32.lib + + + %(AdditionalOptions) /LARGEADDRESSAWARE + %(AdditionalDependencies);ntdll.lib;kernel32.lib;advapi32.lib + + %(AdditionalOptions) /LARGEADDRESSAWARE %(AdditionalDependencies);ntdll.lib;kernel32.lib;advapi32.lib + + + %(AdditionalOptions) /LARGEADDRESSAWARE + %(AdditionalDependencies);ntdll.lib;kernel32.lib;advapi32.lib + + %(AdditionalOptions) /LARGEADDRESSAWARE @@ -160,6 +226,19 @@ %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + + %(PreprocessorDefinitions);UNICODE;_UNICODE @@ -173,6 +252,19 @@ %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + + %(PreprocessorDefinitions);UNICODE;_UNICODE @@ -232,4 +324,4 @@ - \ No newline at end of file + diff --git a/general/obcallback/driver/ObCallbackTest.vcxproj b/general/obcallback/driver/ObCallbackTest.vcxproj index 28b3f60e..1de92412 100644 --- a/general/obcallback/driver/ObCallbackTest.vcxproj +++ b/general/obcallback/driver/ObCallbackTest.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ ObCallbackTest + + ObCallbackTest + ObCallbackTest + + ObCallbackTest + ObCallbackTest @@ -110,6 +146,29 @@ sha256 + + + %(AdditionalIncludeDirectories) + + + %(AdditionalIncludeDirectories) + Disabled + true + Level4 + + + + + %(AdditionalIncludeDirectories) + + + %(AdditionalDependencies) + %(AdditionalOptions) /INTEGRITYCHECK + + + sha256 + + %(AdditionalIncludeDirectories) @@ -133,6 +192,29 @@ sha256 + + + %(AdditionalIncludeDirectories) + + + %(AdditionalIncludeDirectories) + Disabled + true + Level4 + + + + + %(AdditionalIncludeDirectories) + + + %(AdditionalDependencies) + %(AdditionalOptions) /INTEGRITYCHECK + + + sha256 + + %(AdditionalIncludeDirectories) @@ -218,4 +300,4 @@ - \ No newline at end of file + diff --git a/general/obcallback/obcallback.sln b/general/obcallback/obcallback.sln index 74498a08..4b540499 100644 --- a/general/obcallback/obcallback.sln +++ b/general/obcallback/obcallback.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -13,12 +13,22 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ObCallbackTest", "driver\Ob EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F723CC91-3218-4252-89C1-F7998292C456}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {F723CC91-3218-4252-89C1-F7998292C456}.Debug|ARM64.Build.0 = Debug|ARM64 + {850E3104-6DE2-4FA3-8E53-4CA21A230429}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {850E3104-6DE2-4FA3-8E53-4CA21A230429}.Debug|ARM64.Build.0 = Debug|ARM64 + {F723CC91-3218-4252-89C1-F7998292C456}.Release|ARM64.ActiveCfg = Release|ARM64 + {F723CC91-3218-4252-89C1-F7998292C456}.Release|ARM64.Build.0 = Release|ARM64 + {850E3104-6DE2-4FA3-8E53-4CA21A230429}.Release|ARM64.ActiveCfg = Release|ARM64 + {850E3104-6DE2-4FA3-8E53-4CA21A230429}.Release|ARM64.Build.0 = Release|ARM64 {F723CC91-3218-4252-89C1-F7998292C456}.Debug|Win32.ActiveCfg = Debug|Win32 {F723CC91-3218-4252-89C1-F7998292C456}.Debug|Win32.Build.0 = Debug|Win32 {F723CC91-3218-4252-89C1-F7998292C456}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/general/pcidrv/kmdf/HW/PCIDRV.vcxproj b/general/pcidrv/kmdf/HW/PCIDRV.vcxproj index 11a432bb..786d7199 100644 --- a/general/pcidrv/kmdf/HW/PCIDRV.vcxproj +++ b/general/pcidrv/kmdf/HW/PCIDRV.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -200,9 +230,15 @@ PCIDRV + + PCIDRV + PCIDRV + + PCIDRV + PCIDRV @@ -229,6 +265,26 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib + + + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE + %(AdditionalIncludeDirectories);.. + + + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE + %(AdditionalIncludeDirectories);.. + + + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE + %(AdditionalIncludeDirectories);.. + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib @@ -249,6 +305,26 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib + + + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE + %(AdditionalIncludeDirectories);.. + + + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE + %(AdditionalIncludeDirectories);.. + + + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE + %(AdditionalIncludeDirectories);.. + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib @@ -302,6 +378,19 @@ %(PreprocessorDefinitions);EVENT_TRACING;POOL_NX_OPTIN=1 + + + %(PreprocessorDefinitions);EVENT_TRACING;POOL_NX_OPTIN=1 + + + + + %(PreprocessorDefinitions);EVENT_TRACING;POOL_NX_OPTIN=1 + + + %(PreprocessorDefinitions);EVENT_TRACING;POOL_NX_OPTIN=1 + + %(PreprocessorDefinitions);EVENT_TRACING;POOL_NX_OPTIN=1 @@ -315,6 +404,19 @@ %(PreprocessorDefinitions);EVENT_TRACING;POOL_NX_OPTIN=1 + + + %(PreprocessorDefinitions);EVENT_TRACING;POOL_NX_OPTIN=1 + + + + + %(PreprocessorDefinitions);EVENT_TRACING;POOL_NX_OPTIN=1 + + + %(PreprocessorDefinitions);EVENT_TRACING;POOL_NX_OPTIN=1 + + %(PreprocessorDefinitions);EVENT_TRACING;POOL_NX_OPTIN=1 @@ -363,4 +465,4 @@ - \ No newline at end of file + diff --git a/general/pcidrv/pcidrv.sln b/general/pcidrv/pcidrv.sln index 5f93e524..1cf5458f 100644 --- a/general/pcidrv/pcidrv.sln +++ b/general/pcidrv/pcidrv.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -15,12 +15,22 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PCIDRV", "kmdf\HW\PCIDRV.vc EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {E5CE48A7-8BCC-4888-9A2E-C47DBC70771B}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {E5CE48A7-8BCC-4888-9A2E-C47DBC70771B}.Debug|ARM64.Build.0 = Debug|ARM64 + {3DC6A380-6A31-4460-B934-83E1BAC700EE}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {3DC6A380-6A31-4460-B934-83E1BAC700EE}.Debug|ARM64.Build.0 = Debug|ARM64 + {E5CE48A7-8BCC-4888-9A2E-C47DBC70771B}.Release|ARM64.ActiveCfg = Release|ARM64 + {E5CE48A7-8BCC-4888-9A2E-C47DBC70771B}.Release|ARM64.Build.0 = Release|ARM64 + {3DC6A380-6A31-4460-B934-83E1BAC700EE}.Release|ARM64.ActiveCfg = Release|ARM64 + {3DC6A380-6A31-4460-B934-83E1BAC700EE}.Release|ARM64.Build.0 = Release|ARM64 {E5CE48A7-8BCC-4888-9A2E-C47DBC70771B}.Debug|Win32.ActiveCfg = Debug|Win32 {E5CE48A7-8BCC-4888-9A2E-C47DBC70771B}.Debug|Win32.Build.0 = Debug|Win32 {E5CE48A7-8BCC-4888-9A2E-C47DBC70771B}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/general/pcidrv/test/myping.vcxproj b/general/pcidrv/test/myping.vcxproj index 1584435c..3bec595f 100644 --- a/general/pcidrv/test/myping.vcxproj +++ b/general/pcidrv/test/myping.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Desktop + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Desktop + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ myping + + myping + myping + + myping + myping @@ -106,6 +142,25 @@ sha256 + + + %(AdditionalIncludeDirectories);..\kmdf;..\kmdf\hw + + + %(AdditionalIncludeDirectories);..\kmdf;..\kmdf\hw + true + Level4 + + + %(AdditionalIncludeDirectories);..\kmdf;..\kmdf\hw + + + %(AdditionalDependencies);setupapi.lib;wsock32.lib;ws2_32.lib;ole32.lib + + + sha256 + + %(AdditionalIncludeDirectories);..\kmdf;..\kmdf\hw @@ -125,6 +180,25 @@ sha256 + + + %(AdditionalIncludeDirectories);..\kmdf;..\kmdf\hw + + + %(AdditionalIncludeDirectories);..\kmdf;..\kmdf\hw + true + Level4 + + + %(AdditionalIncludeDirectories);..\kmdf;..\kmdf\hw + + + %(AdditionalDependencies);setupapi.lib;wsock32.lib;ws2_32.lib;ole32.lib + + + sha256 + + %(AdditionalIncludeDirectories);..\kmdf;..\kmdf\hw @@ -169,12 +243,24 @@ + + + + + + + + + + + + @@ -205,4 +291,4 @@ - \ No newline at end of file + diff --git a/general/perfcounters/kcs/kcs.sln b/general/perfcounters/kcs/kcs.sln index c6191b37..7f006ff2 100644 --- a/general/perfcounters/kcs/kcs.sln +++ b/general/perfcounters/kcs/kcs.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "kcs", "kcs.vcxproj", "{A0CF EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A0CFCF38-1874-446B-92D5-584D180B12F8}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {A0CFCF38-1874-446B-92D5-584D180B12F8}.Debug|ARM64.Build.0 = Debug|ARM64 + {A0CFCF38-1874-446B-92D5-584D180B12F8}.Release|ARM64.ActiveCfg = Release|ARM64 + {A0CFCF38-1874-446B-92D5-584D180B12F8}.Release|ARM64.Build.0 = Release|ARM64 {A0CFCF38-1874-446B-92D5-584D180B12F8}.Debug|Win32.ActiveCfg = Debug|Win32 {A0CFCF38-1874-446B-92D5-584D180B12F8}.Debug|Win32.Build.0 = Debug|Win32 {A0CFCF38-1874-446B-92D5-584D180B12F8}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/general/perfcounters/kcs/kcs.vcxproj b/general/perfcounters/kcs/kcs.vcxproj index ae15fb1c..b9dd462a 100644 --- a/general/perfcounters/kcs/kcs.vcxproj +++ b/general/perfcounters/kcs/kcs.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -82,9 +112,15 @@ kcs + + kcs + kcs + + kcs + kcs @@ -100,6 +136,15 @@ %(AdditionalDependencies);$(DDK_LIB_PATH)\ntoskrnl.lib;$(DDK_LIB_PATH)\libcntpr.lib + + + true + Level4 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntoskrnl.lib;$(DDK_LIB_PATH)\libcntpr.lib + + true @@ -109,6 +154,15 @@ %(AdditionalDependencies);$(DDK_LIB_PATH)\ntoskrnl.lib;$(DDK_LIB_PATH)\libcntpr.lib + + + true + Level4 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntoskrnl.lib;$(DDK_LIB_PATH)\libcntpr.lib + + true @@ -143,6 +197,22 @@ $(IntDir)%(Filename)Counters.rc + + + + + + + sha256 + + + Kcs + $(IntDir)%(Filename)Counters.h + true + $(IntDir)%(Filename)_counterIds.h + $(IntDir)%(Filename)Counters.rc + + @@ -159,6 +229,22 @@ $(IntDir)%(Filename)Counters.rc + + + + + + + sha256 + + + Kcs + $(IntDir)%(Filename)Counters.h + true + $(IntDir)%(Filename)_counterIds.h + $(IntDir)%(Filename)Counters.rc + + @@ -208,4 +294,4 @@ - \ No newline at end of file + diff --git a/general/registry/regfltr/exe/regctrl.vcxproj b/general/registry/regfltr/exe/regctrl.vcxproj index 61ba2e53..942c141e 100644 --- a/general/registry/regfltr/exe/regctrl.vcxproj +++ b/general/registry/regfltr/exe/regctrl.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ regctrl + + regctrl + regctrl + + regctrl + regctrl @@ -110,6 +146,29 @@ %(AdditionalDependencies);advapi32.lib;ntdll.lib;kernel32.lib + + + Disabled + true + true + Level4 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalDependencies);advapi32.lib;ntdll.lib;kernel32.lib + + Disabled @@ -133,6 +192,29 @@ %(AdditionalDependencies);advapi32.lib;ntdll.lib;kernel32.lib + + + Disabled + true + true + Level4 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalDependencies);advapi32.lib;ntdll.lib;kernel32.lib + + Disabled @@ -200,4 +282,4 @@ - \ No newline at end of file + diff --git a/general/registry/regfltr/regfltr.sln b/general/registry/regfltr/regfltr.sln index 590e18ea..38fc8ab6 100644 --- a/general/registry/regfltr/regfltr.sln +++ b/general/registry/regfltr/regfltr.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -13,12 +13,22 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "regfltr", "sys\regfltr.vcxp EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {EF1294A9-96EE-458A-B2F2-3B8A4433193E}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {EF1294A9-96EE-458A-B2F2-3B8A4433193E}.Debug|ARM64.Build.0 = Debug|ARM64 + {DCD09C78-DEC6-483A-9F5E-2C17D467C4D6}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {DCD09C78-DEC6-483A-9F5E-2C17D467C4D6}.Debug|ARM64.Build.0 = Debug|ARM64 + {EF1294A9-96EE-458A-B2F2-3B8A4433193E}.Release|ARM64.ActiveCfg = Release|ARM64 + {EF1294A9-96EE-458A-B2F2-3B8A4433193E}.Release|ARM64.Build.0 = Release|ARM64 + {DCD09C78-DEC6-483A-9F5E-2C17D467C4D6}.Release|ARM64.ActiveCfg = Release|ARM64 + {DCD09C78-DEC6-483A-9F5E-2C17D467C4D6}.Release|ARM64.Build.0 = Release|ARM64 {EF1294A9-96EE-458A-B2F2-3B8A4433193E}.Debug|Win32.ActiveCfg = Debug|Win32 {EF1294A9-96EE-458A-B2F2-3B8A4433193E}.Debug|Win32.Build.0 = Debug|Win32 {EF1294A9-96EE-458A-B2F2-3B8A4433193E}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/general/registry/regfltr/sys/regfltr.vcxproj b/general/registry/regfltr/sys/regfltr.vcxproj index 1c08f595..4039d3d0 100644 --- a/general/registry/regfltr/sys/regfltr.vcxproj +++ b/general/registry/regfltr/sys/regfltr.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ regfltr + + regfltr + regfltr + + regfltr + regfltr @@ -105,6 +141,24 @@ %(AdditionalDependencies);$(DDK_LIB_PATH)\wdmsec.lib;$(DDK_LIB_PATH)\ntoskrnl.lib + + + %(AdditionalIncludeDirectories);$(IFSKIT_INC_PATH);..\exe + + + %(AdditionalIncludeDirectories);$(IFSKIT_INC_PATH);..\exe + Disabled + true + true + Level4 + + + %(AdditionalIncludeDirectories);$(IFSKIT_INC_PATH);..\exe + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\wdmsec.lib;$(DDK_LIB_PATH)\ntoskrnl.lib + + %(AdditionalIncludeDirectories);$(IFSKIT_INC_PATH);..\exe @@ -123,6 +177,24 @@ %(AdditionalDependencies);$(DDK_LIB_PATH)\wdmsec.lib;$(DDK_LIB_PATH)\ntoskrnl.lib + + + %(AdditionalIncludeDirectories);$(IFSKIT_INC_PATH);..\exe + + + %(AdditionalIncludeDirectories);$(IFSKIT_INC_PATH);..\exe + Disabled + true + true + Level4 + + + %(AdditionalIncludeDirectories);$(IFSKIT_INC_PATH);..\exe + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\wdmsec.lib;$(DDK_LIB_PATH)\ntoskrnl.lib + + %(AdditionalIncludeDirectories);$(IFSKIT_INC_PATH);..\exe @@ -183,6 +255,16 @@ sha256 + + + + + POOL_NX_OPTIN;POOL_ZERO_DOWN_LEVEL_SUPPORT;%(PreprocessorDefinitions) + + + sha256 + + @@ -193,6 +275,16 @@ sha256 + + + + + POOL_NX_OPTIN;POOL_ZERO_DOWN_LEVEL_SUPPORT;%(PreprocessorDefinitions) + + + sha256 + + @@ -226,4 +318,4 @@ - \ No newline at end of file + diff --git a/general/toaster/toastDrv/Package/package.VcxProj b/general/toaster/toastDrv/Package/package.VcxProj index 85af0a9a..6017e876 100644 --- a/general/toaster/toastDrv/Package/package.VcxProj +++ b/general/toaster/toastDrv/Package/package.VcxProj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -66,10 +74,18 @@ Windows10 true + + Windows10 + true + Windows10 false + + Windows10 + false + @@ -102,4 +118,4 @@ - \ No newline at end of file + diff --git a/general/toaster/toastDrv/exe/enum/Enum.vcxproj b/general/toaster/toastDrv/exe/enum/Enum.vcxproj index 3b8bcbb6..1a8368ae 100644 --- a/general/toaster/toastDrv/exe/enum/Enum.vcxproj +++ b/general/toaster/toastDrv/exe/enum/Enum.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ Enum + + Enum + Enum + + Enum + Enum @@ -109,6 +145,28 @@ sha256 + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions);EVENT_TRACING;UNICODE;_UNICODE + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions);EVENT_TRACING;UNICODE;_UNICODE + + + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions);EVENT_TRACING;UNICODE;_UNICODE + + + %(AdditionalDependencies);mincore.lib + + + sha256 + + %(AdditionalIncludeDirectories);..\..\inc @@ -131,6 +189,28 @@ sha256 + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions);EVENT_TRACING;UNICODE;_UNICODE + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions);EVENT_TRACING;UNICODE;_UNICODE + + + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions);EVENT_TRACING;UNICODE;_UNICODE + + + %(AdditionalDependencies);mincore.lib + + + sha256 + + %(AdditionalIncludeDirectories);..\..\inc @@ -191,4 +271,4 @@ - \ No newline at end of file + diff --git a/general/toaster/toastDrv/exe/notify/notify.vcxproj b/general/toaster/toastDrv/exe/notify/notify.vcxproj index 6a4c3d43..0938da26 100644 --- a/general/toaster/toastDrv/exe/notify/notify.vcxproj +++ b/general/toaster/toastDrv/exe/notify/notify.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ notify + + notify + notify + + notify + notify @@ -106,6 +142,25 @@ sha256 + + + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalIncludeDirectories);..\..\inc + + + + + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalDependencies);setupapi.lib + + + sha256 + + %(AdditionalIncludeDirectories);..\..\inc @@ -125,6 +180,25 @@ sha256 + + + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalIncludeDirectories);..\..\inc + + + + + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalDependencies);setupapi.lib + + + sha256 + + %(AdditionalIncludeDirectories);..\..\inc @@ -180,4 +254,4 @@ - \ No newline at end of file + diff --git a/general/toaster/toastDrv/exe/toast/toast.vcxproj b/general/toaster/toastDrv/exe/toast/toast.vcxproj index 8c0739a0..5bd136af 100644 --- a/general/toaster/toastDrv/exe/toast/toast.vcxproj +++ b/general/toaster/toastDrv/exe/toast/toast.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ toast + + toast + toast + + toast + toast @@ -106,6 +142,25 @@ sha256 + + + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalIncludeDirectories);..\..\inc + + + + + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalDependencies);setupapi.lib + + + sha256 + + %(AdditionalIncludeDirectories);..\..\inc @@ -125,6 +180,25 @@ sha256 + + + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalIncludeDirectories);..\..\inc + + + + + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalDependencies);setupapi.lib + + + sha256 + + %(AdditionalIncludeDirectories);..\..\inc @@ -179,4 +253,4 @@ - \ No newline at end of file + diff --git a/general/toaster/toastDrv/exe/wmi/WmiToast.vcxproj b/general/toaster/toastDrv/exe/wmi/WmiToast.vcxproj index 6333469f..5e6df518 100644 --- a/general/toaster/toastDrv/exe/wmi/WmiToast.vcxproj +++ b/general/toaster/toastDrv/exe/wmi/WmiToast.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ WmiToast + + WmiToast + WmiToast + + WmiToast + WmiToast @@ -107,6 +143,26 @@ sha256 + + + %(AdditionalDependencies);vccomsup.lib + %(AdditionalDependencies);ole32.lib;oleaut32.lib;uuid.lib;wbemuuid.lib + + + %(PreprocessorDefinitions);_UNICODE;UNICODE + + + + + %(PreprocessorDefinitions);_UNICODE;UNICODE + + + %(PreprocessorDefinitions);_UNICODE;UNICODE + + + sha256 + + %(AdditionalDependencies);vccomsup.lib @@ -127,6 +183,26 @@ sha256 + + + %(AdditionalDependencies);vccomsup.lib + %(AdditionalDependencies);ole32.lib;oleaut32.lib;uuid.lib;wbemuuid.lib + + + %(PreprocessorDefinitions);_UNICODE;UNICODE + + + + + %(PreprocessorDefinitions);_UNICODE;UNICODE + + + %(PreprocessorDefinitions);_UNICODE;UNICODE + + + sha256 + + %(AdditionalDependencies);vccomsup.lib @@ -185,4 +261,4 @@ - \ No newline at end of file + diff --git a/general/toaster/toastDrv/kmdf/bus/dynamic/dynambus.vcxproj b/general/toaster/toastDrv/kmdf/bus/dynamic/dynambus.vcxproj index deddc2c7..9ce572dc 100644 --- a/general/toaster/toastDrv/kmdf/bus/dynamic/dynambus.vcxproj +++ b/general/toaster/toastDrv/kmdf/bus/dynamic/dynambus.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -37,6 +45,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -45,6 +61,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -68,9 +92,15 @@ + + + + + + @@ -97,9 +127,15 @@ dynambus + + dynambus + dynambus + + dynambus + dynambus @@ -125,6 +161,25 @@ sha256 + + + %(AdditionalIncludeDirectories);..\..\..\inc + + + %(AdditionalIncludeDirectories);..\..\..\inc + + + + + %(AdditionalIncludeDirectories);..\..\..\inc + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib + + + sha256 + + %(AdditionalIncludeDirectories);..\..\..\inc @@ -144,6 +199,25 @@ sha256 + + + %(AdditionalIncludeDirectories);..\..\..\inc + + + %(AdditionalIncludeDirectories);..\..\..\inc + + + + + %(AdditionalIncludeDirectories);..\..\..\inc + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib + + + sha256 + + %(AdditionalIncludeDirectories);..\..\..\inc @@ -201,4 +275,4 @@ - \ No newline at end of file + diff --git a/general/toaster/toastDrv/kmdf/bus/static/StatBus.vcxproj b/general/toaster/toastDrv/kmdf/bus/static/StatBus.vcxproj index 089dc141..69794cf2 100644 --- a/general/toaster/toastDrv/kmdf/bus/static/StatBus.vcxproj +++ b/general/toaster/toastDrv/kmdf/bus/static/StatBus.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -37,6 +45,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -45,6 +61,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -68,9 +92,15 @@ + + + + + + @@ -97,9 +127,15 @@ StatBus + + StatBus + StatBus + + StatBus + StatBus @@ -125,6 +161,25 @@ sha256 + + + %(AdditionalIncludeDirectories);..\..\..\inc + + + %(AdditionalIncludeDirectories);..\..\..\inc + + + + + %(AdditionalIncludeDirectories);..\..\..\inc + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib + + + sha256 + + %(AdditionalIncludeDirectories);..\..\..\inc @@ -144,6 +199,25 @@ sha256 + + + %(AdditionalIncludeDirectories);..\..\..\inc + + + %(AdditionalIncludeDirectories);..\..\..\inc + + + + + %(AdditionalIncludeDirectories);..\..\..\inc + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib + + + sha256 + + %(AdditionalIncludeDirectories);..\..\..\inc @@ -201,4 +275,4 @@ - \ No newline at end of file + diff --git a/general/toaster/toastDrv/kmdf/filter/generic/filter.vcxproj b/general/toaster/toastDrv/kmdf/filter/generic/filter.vcxproj index 4a949834..c85def4a 100644 --- a/general/toaster/toastDrv/kmdf/filter/generic/filter.vcxproj +++ b/general/toaster/toastDrv/kmdf/filter/generic/filter.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -37,6 +45,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -45,6 +61,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -68,9 +92,15 @@ + + + + + + @@ -87,9 +117,15 @@ filter + + filter + filter + + filter + filter @@ -117,6 +153,27 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);..\..\..\inc + + + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\wdmsec.lib + + + %(AdditionalIncludeDirectories);..\..\..\inc + + + %(AdditionalIncludeDirectories);..\..\..\inc + + + sha256 + + true @@ -138,6 +195,27 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);..\..\..\inc + + + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\wdmsec.lib + + + %(AdditionalIncludeDirectories);..\..\..\inc + + + %(AdditionalIncludeDirectories);..\..\..\inc + + + sha256 + + true @@ -197,4 +275,4 @@ - \ No newline at end of file + diff --git a/general/toaster/toastDrv/kmdf/filter/sideband/filter.vcxproj b/general/toaster/toastDrv/kmdf/filter/sideband/filter.vcxproj index 0bcd8cc1..fe1641bd 100644 --- a/general/toaster/toastDrv/kmdf/filter/sideband/filter.vcxproj +++ b/general/toaster/toastDrv/kmdf/filter/sideband/filter.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -37,6 +45,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -45,6 +61,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -68,9 +92,15 @@ + + + + + + @@ -87,9 +117,15 @@ filter + + filter + filter + + filter + filter @@ -120,6 +156,30 @@ sha256 + + + %(PreprocessorDefinitions);IOCTL_INTERFACE=1 + true + Level4 + %(AdditionalIncludeDirectories);..\..\..\inc + + + + + %(PreprocessorDefinitions);IOCTL_INTERFACE=1 + %(AdditionalIncludeDirectories);..\..\..\inc + + + %(PreprocessorDefinitions);IOCTL_INTERFACE=1 + %(AdditionalIncludeDirectories);..\..\..\inc + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\wdmsec.lib + + + sha256 + + %(PreprocessorDefinitions);IOCTL_INTERFACE=1 @@ -144,6 +204,30 @@ sha256 + + + %(PreprocessorDefinitions);IOCTL_INTERFACE=1 + true + Level4 + %(AdditionalIncludeDirectories);..\..\..\inc + + + + + %(PreprocessorDefinitions);IOCTL_INTERFACE=1 + %(AdditionalIncludeDirectories);..\..\..\inc + + + %(PreprocessorDefinitions);IOCTL_INTERFACE=1 + %(AdditionalIncludeDirectories);..\..\..\inc + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\wdmsec.lib + + + sha256 + + %(PreprocessorDefinitions);IOCTL_INTERFACE=1 @@ -209,4 +293,4 @@ - \ No newline at end of file + diff --git a/general/toaster/toastDrv/kmdf/func/featured/wdffeatured.vcxproj b/general/toaster/toastDrv/kmdf/func/featured/wdffeatured.vcxproj index 20b24f1b..14cd070e 100644 --- a/general/toaster/toastDrv/kmdf/func/featured/wdffeatured.vcxproj +++ b/general/toaster/toastDrv/kmdf/func/featured/wdffeatured.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -37,6 +45,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -45,6 +61,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -68,9 +92,15 @@ + + + + + + @@ -102,9 +132,15 @@ wdffeatured + + wdffeatured + wdffeatured + + wdffeatured + wdffeatured @@ -133,6 +169,28 @@ sha256 + + + %(AdditionalIncludeDirectories);..\..\..\inc;..\shared + %(PreprocessorDefinitions);TOASTER_FUNC_FEATURED + + + %(AdditionalIncludeDirectories);..\..\..\inc;..\shared + %(PreprocessorDefinitions);TOASTER_FUNC_FEATURED + + + + + %(AdditionalIncludeDirectories);..\..\..\inc;..\shared + %(PreprocessorDefinitions);TOASTER_FUNC_FEATURED + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\wpprecorder.lib + + + sha256 + + %(AdditionalIncludeDirectories);..\..\..\inc;..\shared @@ -155,6 +213,28 @@ sha256 + + + %(AdditionalIncludeDirectories);..\..\..\inc;..\shared + %(PreprocessorDefinitions);TOASTER_FUNC_FEATURED + + + %(AdditionalIncludeDirectories);..\..\..\inc;..\shared + %(PreprocessorDefinitions);TOASTER_FUNC_FEATURED + + + + + %(AdditionalIncludeDirectories);..\..\..\inc;..\shared + %(PreprocessorDefinitions);TOASTER_FUNC_FEATURED + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\wpprecorder.lib + + + sha256 + + %(AdditionalIncludeDirectories);..\..\..\inc;..\shared @@ -215,4 +295,4 @@ - \ No newline at end of file + diff --git a/general/toaster/toastDrv/kmdf/func/simple/wdfsimple.vcxproj b/general/toaster/toastDrv/kmdf/func/simple/wdfsimple.vcxproj index 757978dd..3d52cdc9 100644 --- a/general/toaster/toastDrv/kmdf/func/simple/wdfsimple.vcxproj +++ b/general/toaster/toastDrv/kmdf/func/simple/wdfsimple.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -37,6 +45,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -45,6 +61,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -68,9 +92,15 @@ + + + + + + @@ -87,9 +117,15 @@ wdfsimple + + wdfsimple + wdfsimple + + wdfsimple + wdfsimple @@ -112,6 +148,22 @@ sha256 + + + %(AdditionalIncludeDirectories);..\..\..\inc;..\shared + + + %(AdditionalIncludeDirectories);..\..\..\inc;..\shared + + + + + %(AdditionalIncludeDirectories);..\..\..\inc;..\shared + + + sha256 + + %(AdditionalIncludeDirectories);..\..\..\inc;..\shared @@ -128,6 +180,22 @@ sha256 + + + %(AdditionalIncludeDirectories);..\..\..\inc;..\shared + + + %(AdditionalIncludeDirectories);..\..\..\inc;..\shared + + + + + %(AdditionalIncludeDirectories);..\..\..\inc;..\shared + + + sha256 + + %(AdditionalIncludeDirectories);..\..\..\inc;..\shared @@ -176,4 +244,4 @@ - \ No newline at end of file + diff --git a/general/toaster/toastDrv/kmdf/toastmon/wdftoastmon.vcxproj b/general/toaster/toastDrv/kmdf/toastmon/wdftoastmon.vcxproj index f32bcee1..0ac7f92a 100644 --- a/general/toaster/toastDrv/kmdf/toastmon/wdftoastmon.vcxproj +++ b/general/toaster/toastDrv/kmdf/toastmon/wdftoastmon.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -37,6 +45,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -45,6 +61,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -68,9 +92,15 @@ + + + + + + @@ -87,9 +117,15 @@ wdftoastmon + + wdftoastmon + wdftoastmon + + wdftoastmon + wdftoastmon @@ -115,6 +151,25 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib + + + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalIncludeDirectories);..\..\inc + + + + + %(AdditionalIncludeDirectories);..\..\inc + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib @@ -134,6 +189,25 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib + + + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalIncludeDirectories);..\..\inc + + + + + %(AdditionalIncludeDirectories);..\..\inc + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib @@ -190,4 +264,4 @@ - \ No newline at end of file + diff --git a/general/toaster/toastDrv/toaster.sln b/general/toaster/toastDrv/toaster.sln index 551f7a75..f9cfbba1 100644 --- a/general/toaster/toastDrv/toaster.sln +++ b/general/toaster/toastDrv/toaster.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -63,12 +63,62 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "dynambus", "kmdf\bus\dynami EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {30FFB863-CECC-4E27-85F1-8DAC2256FC2F}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {30FFB863-CECC-4E27-85F1-8DAC2256FC2F}.Debug|ARM64.Build.0 = Debug|ARM64 + {869C08D1-A32F-49C7-9831-2ADB52F241B6}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {869C08D1-A32F-49C7-9831-2ADB52F241B6}.Debug|ARM64.Build.0 = Debug|ARM64 + {816AC9A5-B371-4041-880C-A6B630DBCCE9}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {816AC9A5-B371-4041-880C-A6B630DBCCE9}.Debug|ARM64.Build.0 = Debug|ARM64 + {B9EE93AA-581C-4DB2-8164-0D1E08029BB6}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {B9EE93AA-581C-4DB2-8164-0D1E08029BB6}.Debug|ARM64.Build.0 = Debug|ARM64 + {B26E87C6-12CE-4E03-A002-A2BF12B34986}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {B26E87C6-12CE-4E03-A002-A2BF12B34986}.Debug|ARM64.Build.0 = Debug|ARM64 + {D15FD911-F2DA-4644-8142-6D22756AD287}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {D15FD911-F2DA-4644-8142-6D22756AD287}.Debug|ARM64.Build.0 = Debug|ARM64 + {1C73C590-1F01-45BF-9BFA-97F8BCEB2795}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {1C73C590-1F01-45BF-9BFA-97F8BCEB2795}.Debug|ARM64.Build.0 = Debug|ARM64 + {C0049CDD-7551-4681-9E30-EFE32868F651}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {C0049CDD-7551-4681-9E30-EFE32868F651}.Debug|ARM64.Build.0 = Debug|ARM64 + {1A40DA6D-B948-43A7-864C-962517EE0A1D}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {1A40DA6D-B948-43A7-864C-962517EE0A1D}.Debug|ARM64.Build.0 = Debug|ARM64 + {B39F6628-73BA-4AC3-863A-EA20892F1EFD}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {B39F6628-73BA-4AC3-863A-EA20892F1EFD}.Debug|ARM64.Build.0 = Debug|ARM64 + {6C6E0C23-5B37-4BBB-8909-435078D49364}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {6C6E0C23-5B37-4BBB-8909-435078D49364}.Debug|ARM64.Build.0 = Debug|ARM64 + {E5E1F492-05BB-45A3-B09F-F643DC1C6B03}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {E5E1F492-05BB-45A3-B09F-F643DC1C6B03}.Debug|ARM64.Build.0 = Debug|ARM64 + {30FFB863-CECC-4E27-85F1-8DAC2256FC2F}.Release|ARM64.ActiveCfg = Release|ARM64 + {30FFB863-CECC-4E27-85F1-8DAC2256FC2F}.Release|ARM64.Build.0 = Release|ARM64 + {869C08D1-A32F-49C7-9831-2ADB52F241B6}.Release|ARM64.ActiveCfg = Release|ARM64 + {869C08D1-A32F-49C7-9831-2ADB52F241B6}.Release|ARM64.Build.0 = Release|ARM64 + {816AC9A5-B371-4041-880C-A6B630DBCCE9}.Release|ARM64.ActiveCfg = Release|ARM64 + {816AC9A5-B371-4041-880C-A6B630DBCCE9}.Release|ARM64.Build.0 = Release|ARM64 + {B9EE93AA-581C-4DB2-8164-0D1E08029BB6}.Release|ARM64.ActiveCfg = Release|ARM64 + {B9EE93AA-581C-4DB2-8164-0D1E08029BB6}.Release|ARM64.Build.0 = Release|ARM64 + {B26E87C6-12CE-4E03-A002-A2BF12B34986}.Release|ARM64.ActiveCfg = Release|ARM64 + {B26E87C6-12CE-4E03-A002-A2BF12B34986}.Release|ARM64.Build.0 = Release|ARM64 + {D15FD911-F2DA-4644-8142-6D22756AD287}.Release|ARM64.ActiveCfg = Release|ARM64 + {D15FD911-F2DA-4644-8142-6D22756AD287}.Release|ARM64.Build.0 = Release|ARM64 + {1C73C590-1F01-45BF-9BFA-97F8BCEB2795}.Release|ARM64.ActiveCfg = Release|ARM64 + {1C73C590-1F01-45BF-9BFA-97F8BCEB2795}.Release|ARM64.Build.0 = Release|ARM64 + {C0049CDD-7551-4681-9E30-EFE32868F651}.Release|ARM64.ActiveCfg = Release|ARM64 + {C0049CDD-7551-4681-9E30-EFE32868F651}.Release|ARM64.Build.0 = Release|ARM64 + {1A40DA6D-B948-43A7-864C-962517EE0A1D}.Release|ARM64.ActiveCfg = Release|ARM64 + {1A40DA6D-B948-43A7-864C-962517EE0A1D}.Release|ARM64.Build.0 = Release|ARM64 + {B39F6628-73BA-4AC3-863A-EA20892F1EFD}.Release|ARM64.ActiveCfg = Release|ARM64 + {B39F6628-73BA-4AC3-863A-EA20892F1EFD}.Release|ARM64.Build.0 = Release|ARM64 + {6C6E0C23-5B37-4BBB-8909-435078D49364}.Release|ARM64.ActiveCfg = Release|ARM64 + {6C6E0C23-5B37-4BBB-8909-435078D49364}.Release|ARM64.Build.0 = Release|ARM64 + {E5E1F492-05BB-45A3-B09F-F643DC1C6B03}.Release|ARM64.ActiveCfg = Release|ARM64 + {E5E1F492-05BB-45A3-B09F-F643DC1C6B03}.Release|ARM64.Build.0 = Release|ARM64 {30FFB863-CECC-4E27-85F1-8DAC2256FC2F}.Debug|Win32.ActiveCfg = Debug|Win32 {30FFB863-CECC-4E27-85F1-8DAC2256FC2F}.Debug|Win32.Build.0 = Debug|Win32 {30FFB863-CECC-4E27-85F1-8DAC2256FC2F}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/general/toaster/toastpkg/toastapp/toastapp.vcxproj b/general/toaster/toastpkg/toastapp/toastapp.vcxproj index 86840c1c..d6f22df6 100644 --- a/general/toaster/toastpkg/toastapp/toastapp.vcxproj +++ b/general/toaster/toastpkg/toastapp/toastapp.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ toastapp + + toastapp + toastapp + + toastapp + toastapp @@ -103,6 +139,22 @@ %(AdditionalDependencies);setupapi.lib;user32.lib + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + true + Level4 + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalDependencies);setupapi.lib;user32.lib + + %(PreprocessorDefinitions);UNICODE;_UNICODE @@ -119,6 +171,22 @@ %(AdditionalDependencies);setupapi.lib;user32.lib + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + true + Level4 + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalDependencies);setupapi.lib;user32.lib + + %(PreprocessorDefinitions);UNICODE;_UNICODE @@ -166,12 +234,24 @@ + + + + + + + + + + + + @@ -205,4 +285,4 @@ - \ No newline at end of file + diff --git a/general/toaster/toastpkg/toastco/tostrco2.vcxproj b/general/toaster/toastpkg/toastco/tostrco2.vcxproj index acaa1a74..2009ab26 100644 --- a/general/toaster/toastpkg/toastco/tostrco2.vcxproj +++ b/general/toaster/toastpkg/toastco/tostrco2.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + False + Desktop + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + True + Desktop + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ tostrco2 + + tostrco2 + tostrco2 + + tostrco2 + tostrco2 @@ -93,12 +129,24 @@ _DllMainCRTStartup + + + _DllMainCRTStartup@12 + _DllMainCRTStartup + + _DllMainCRTStartup@12 _DllMainCRTStartup + + + _DllMainCRTStartup@12 + _DllMainCRTStartup + + _DllMainCRTStartup@12 @@ -127,6 +175,22 @@ %(AdditionalDependencies);setupapi.lib;user32.lib;kernel32.lib;comctl32.lib;advapi32.lib + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + true + Level4 + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalDependencies);setupapi.lib;user32.lib;kernel32.lib;comctl32.lib;advapi32.lib + + %(PreprocessorDefinitions);UNICODE;_UNICODE @@ -143,6 +207,22 @@ %(AdditionalDependencies);setupapi.lib;user32.lib;kernel32.lib;comctl32.lib;advapi32.lib + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + true + Level4 + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalDependencies);setupapi.lib;user32.lib;kernel32.lib;comctl32.lib;advapi32.lib + + %(PreprocessorDefinitions);UNICODE;_UNICODE @@ -184,6 +264,15 @@ + + + tostrco2.def + + + + + + tostrco2.def @@ -193,6 +282,15 @@ + + + tostrco2.def + + + + + + tostrco2.def @@ -239,4 +337,4 @@ - \ No newline at end of file + diff --git a/general/toaster/toastpkg/toastpkg.sln b/general/toaster/toastpkg/toastpkg.sln index 870855c3..9ab503dc 100644 --- a/general/toaster/toastpkg/toastpkg.sln +++ b/general/toaster/toastpkg/toastpkg.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -20,12 +20,26 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "toastva", "toastva\toastva. EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {DA341425-3029-4DFD-8024-6910371ACEF5}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {DA341425-3029-4DFD-8024-6910371ACEF5}.Debug|ARM64.Build.0 = Debug|ARM64 + {7C8F71F5-C429-4DFF-957E-00B9E82E2882}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {7C8F71F5-C429-4DFF-957E-00B9E82E2882}.Debug|ARM64.Build.0 = Debug|ARM64 + {91B0C70B-5062-4573-AD4E-4289FDE4E9E5}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {91B0C70B-5062-4573-AD4E-4289FDE4E9E5}.Debug|ARM64.Build.0 = Debug|ARM64 + {DA341425-3029-4DFD-8024-6910371ACEF5}.Release|ARM64.ActiveCfg = Release|ARM64 + {DA341425-3029-4DFD-8024-6910371ACEF5}.Release|ARM64.Build.0 = Release|ARM64 + {7C8F71F5-C429-4DFF-957E-00B9E82E2882}.Release|ARM64.ActiveCfg = Release|ARM64 + {7C8F71F5-C429-4DFF-957E-00B9E82E2882}.Release|ARM64.Build.0 = Release|ARM64 + {91B0C70B-5062-4573-AD4E-4289FDE4E9E5}.Release|ARM64.ActiveCfg = Release|ARM64 + {91B0C70B-5062-4573-AD4E-4289FDE4E9E5}.Release|ARM64.Build.0 = Release|ARM64 {DA341425-3029-4DFD-8024-6910371ACEF5}.Debug|Win32.ActiveCfg = Debug|Win32 {DA341425-3029-4DFD-8024-6910371ACEF5}.Debug|Win32.Build.0 = Debug|Win32 {DA341425-3029-4DFD-8024-6910371ACEF5}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/general/toaster/toastpkg/toastva/toastva.vcxproj b/general/toaster/toastpkg/toastva/toastva.vcxproj index 92591cdd..6c722bd3 100644 --- a/general/toaster/toastpkg/toastva/toastva.vcxproj +++ b/general/toaster/toastpkg/toastva/toastva.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Desktop + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Desktop + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ toastva + + toastva + toastva + + toastva + toastva @@ -103,6 +139,22 @@ %(AdditionalDependencies);setupapi.lib;user32.lib;shell32.lib;comctl32.lib;newdev.lib;.\..\toastco\$(IntDir)\tostrco2.lib + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + true + Level4 + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalDependencies);setupapi.lib;user32.lib;shell32.lib;comctl32.lib;newdev.lib;.\..\toastco\$(IntDir)\tostrco2.lib + + %(PreprocessorDefinitions);UNICODE;_UNICODE @@ -119,6 +171,22 @@ %(AdditionalDependencies);setupapi.lib;user32.lib;shell32.lib;comctl32.lib;newdev.lib;.\..\toastco\$(IntDir)\tostrco2.lib + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + true + Level4 + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalDependencies);setupapi.lib;user32.lib;shell32.lib;comctl32.lib;newdev.lib;.\..\toastco\$(IntDir)\tostrco2.lib + + %(PreprocessorDefinitions);UNICODE;_UNICODE @@ -178,12 +246,24 @@ + + + + + + + + + + + + @@ -217,4 +297,4 @@ - \ No newline at end of file + diff --git a/general/toaster/umdf2/Package/package.VcxProj b/general/toaster/umdf2/Package/package.VcxProj index 383b3839..405c0e92 100644 --- a/general/toaster/umdf2/Package/package.VcxProj +++ b/general/toaster/umdf2/Package/package.VcxProj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -51,10 +59,18 @@ Windows10 true + + Windows10 + true + Windows10 false + + Windows10 + false + @@ -87,4 +103,4 @@ - \ No newline at end of file + diff --git a/general/toaster/umdf2/exe/enum/Enum.vcxproj b/general/toaster/umdf2/exe/enum/Enum.vcxproj index 3b8bcbb6..1a8368ae 100644 --- a/general/toaster/umdf2/exe/enum/Enum.vcxproj +++ b/general/toaster/umdf2/exe/enum/Enum.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ Enum + + Enum + Enum + + Enum + Enum @@ -109,6 +145,28 @@ sha256 + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions);EVENT_TRACING;UNICODE;_UNICODE + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions);EVENT_TRACING;UNICODE;_UNICODE + + + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions);EVENT_TRACING;UNICODE;_UNICODE + + + %(AdditionalDependencies);mincore.lib + + + sha256 + + %(AdditionalIncludeDirectories);..\..\inc @@ -131,6 +189,28 @@ sha256 + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions);EVENT_TRACING;UNICODE;_UNICODE + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions);EVENT_TRACING;UNICODE;_UNICODE + + + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions);EVENT_TRACING;UNICODE;_UNICODE + + + %(AdditionalDependencies);mincore.lib + + + sha256 + + %(AdditionalIncludeDirectories);..\..\inc @@ -191,4 +271,4 @@ - \ No newline at end of file + diff --git a/general/toaster/umdf2/exe/notify/notify.vcxproj b/general/toaster/umdf2/exe/notify/notify.vcxproj index 38bb67b7..0ff1d33d 100644 --- a/general/toaster/umdf2/exe/notify/notify.vcxproj +++ b/general/toaster/umdf2/exe/notify/notify.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Desktop + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Desktop + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ notify + + notify + notify + + notify + notify @@ -106,6 +142,25 @@ sha256 + + + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalIncludeDirectories);..\..\inc + + + + + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalDependencies);setupapi.lib + + + sha256 + + %(AdditionalIncludeDirectories);..\..\inc @@ -125,6 +180,25 @@ sha256 + + + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalIncludeDirectories);..\..\inc + + + + + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalDependencies);setupapi.lib + + + sha256 + + %(AdditionalIncludeDirectories);..\..\inc @@ -180,4 +254,4 @@ - \ No newline at end of file + diff --git a/general/toaster/umdf2/exe/toast/toast.vcxproj b/general/toaster/umdf2/exe/toast/toast.vcxproj index a8787a63..28ffce1d 100644 --- a/general/toaster/umdf2/exe/toast/toast.vcxproj +++ b/general/toaster/umdf2/exe/toast/toast.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Desktop + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Desktop + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ toast + + toast + toast + + toast + toast @@ -106,6 +142,25 @@ sha256 + + + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalIncludeDirectories);..\..\inc + + + + + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalDependencies);setupapi.lib + + + sha256 + + %(AdditionalIncludeDirectories);..\..\inc @@ -125,6 +180,25 @@ sha256 + + + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalIncludeDirectories);..\..\inc + + + + + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalDependencies);setupapi.lib + + + sha256 + + %(AdditionalIncludeDirectories);..\..\inc @@ -179,4 +253,4 @@ - \ No newline at end of file + diff --git a/general/toaster/umdf2/filter/generic/filterum.vcxproj b/general/toaster/umdf2/filter/generic/filterum.vcxproj index 8e19fe5e..d7570800 100644 --- a/general/toaster/umdf2/filter/generic/filterum.vcxproj +++ b/general/toaster/umdf2/filter/generic/filterum.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -37,6 +45,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + False + Windows Driver + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 True @@ -45,6 +61,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + True + Windows Driver + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 False @@ -68,9 +92,15 @@ + + + + + + @@ -87,9 +117,15 @@ filterum + + filterum + filterum + + filterum + filterum @@ -117,6 +153,27 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);..\..\inc + + + + + %(AdditionalDependencies);mincore.lib + + + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalIncludeDirectories);..\..\inc + + + sha256 + + true @@ -138,6 +195,27 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);..\..\inc + + + + + %(AdditionalDependencies);mincore.lib + + + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalIncludeDirectories);..\..\inc + + + sha256 + + true @@ -196,4 +274,4 @@ - \ No newline at end of file + diff --git a/general/toaster/umdf2/func/featured/wdffeaturedum.vcxproj b/general/toaster/umdf2/func/featured/wdffeaturedum.vcxproj index eda66e4a..6ac0618d 100644 --- a/general/toaster/umdf2/func/featured/wdffeaturedum.vcxproj +++ b/general/toaster/umdf2/func/featured/wdffeaturedum.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + False + Windows Driver + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 True @@ -43,6 +59,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + True + Windows Driver + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -85,9 +115,15 @@ wdffeaturedum + + wdffeaturedum + wdffeaturedum + + wdffeaturedum + wdffeaturedum @@ -113,6 +149,25 @@ sha256 + + + %(AdditionalDependencies);mincore.lib + + + %(AdditionalIncludeDirectories);..\..\inc;..\shared + + + %(AdditionalIncludeDirectories);..\..\inc;..\shared + + + + + %(AdditionalIncludeDirectories);..\..\inc;..\shared + + + sha256 + + %(AdditionalDependencies);mincore.lib @@ -132,6 +187,25 @@ sha256 + + + %(AdditionalDependencies);mincore.lib + + + %(AdditionalIncludeDirectories);..\..\inc;..\shared + + + %(AdditionalIncludeDirectories);..\..\inc;..\shared + + + + + %(AdditionalIncludeDirectories);..\..\inc;..\shared + + + sha256 + + %(AdditionalDependencies);mincore.lib @@ -188,4 +262,4 @@ - \ No newline at end of file + diff --git a/general/toaster/umdf2/func/simple/wdfsimpleum.vcxproj b/general/toaster/umdf2/func/simple/wdfsimpleum.vcxproj index 4a3b9f89..ec446656 100644 --- a/general/toaster/umdf2/func/simple/wdfsimpleum.vcxproj +++ b/general/toaster/umdf2/func/simple/wdfsimpleum.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -37,6 +45,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + False + Windows Driver + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 True @@ -45,6 +61,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + True + Windows Driver + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 False @@ -68,9 +92,15 @@ + + + + + + @@ -87,9 +117,15 @@ wdfsimpleum + + wdfsimpleum + wdfsimpleum + + wdfsimpleum + wdfsimpleum @@ -115,6 +151,25 @@ sha256 + + + %(AdditionalDependencies);mincore.lib + + + %(AdditionalIncludeDirectories);..\..\inc;..\shared + + + %(AdditionalIncludeDirectories);..\..\inc;..\shared + + + + + %(AdditionalIncludeDirectories);..\..\inc;..\shared + + + sha256 + + %(AdditionalDependencies);mincore.lib @@ -134,6 +189,25 @@ sha256 + + + %(AdditionalDependencies);mincore.lib + + + %(AdditionalIncludeDirectories);..\..\inc;..\shared + + + %(AdditionalIncludeDirectories);..\..\inc;..\shared + + + + + %(AdditionalIncludeDirectories);..\..\inc;..\shared + + + sha256 + + %(AdditionalDependencies);mincore.lib @@ -188,4 +262,4 @@ - \ No newline at end of file + diff --git a/general/toaster/umdf2/umdf2toaster.sln b/general/toaster/umdf2/umdf2toaster.sln index 0b476358..4a27bc25 100644 --- a/general/toaster/umdf2/umdf2toaster.sln +++ b/general/toaster/umdf2/umdf2toaster.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -39,12 +39,42 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "filterum", "filter\generic\ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {71F91DD8-7891-4431-8F10-D33D2AA7F7AD}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {71F91DD8-7891-4431-8F10-D33D2AA7F7AD}.Debug|ARM64.Build.0 = Debug|ARM64 + {2B7E892B-CDE4-4A4F-9D0B-108CE8B7CABB}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {2B7E892B-CDE4-4A4F-9D0B-108CE8B7CABB}.Debug|ARM64.Build.0 = Debug|ARM64 + {8FA35EEE-04BE-438A-AD20-A8E849C9A107}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {8FA35EEE-04BE-438A-AD20-A8E849C9A107}.Debug|ARM64.Build.0 = Debug|ARM64 + {91E7C695-3307-4596-90E1-065AFB4D2643}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {91E7C695-3307-4596-90E1-065AFB4D2643}.Debug|ARM64.Build.0 = Debug|ARM64 + {31C45025-FDA4-4CB5-B55E-81F934382654}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {31C45025-FDA4-4CB5-B55E-81F934382654}.Debug|ARM64.Build.0 = Debug|ARM64 + {FCF21B34-353D-4F85-9EA0-C29978C12DBF}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {FCF21B34-353D-4F85-9EA0-C29978C12DBF}.Debug|ARM64.Build.0 = Debug|ARM64 + {3CC42473-D121-41F4-AE26-1F2F0AC65E82}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {3CC42473-D121-41F4-AE26-1F2F0AC65E82}.Debug|ARM64.Build.0 = Debug|ARM64 + {71F91DD8-7891-4431-8F10-D33D2AA7F7AD}.Release|ARM64.ActiveCfg = Release|ARM64 + {71F91DD8-7891-4431-8F10-D33D2AA7F7AD}.Release|ARM64.Build.0 = Release|ARM64 + {2B7E892B-CDE4-4A4F-9D0B-108CE8B7CABB}.Release|ARM64.ActiveCfg = Release|ARM64 + {2B7E892B-CDE4-4A4F-9D0B-108CE8B7CABB}.Release|ARM64.Build.0 = Release|ARM64 + {8FA35EEE-04BE-438A-AD20-A8E849C9A107}.Release|ARM64.ActiveCfg = Release|ARM64 + {8FA35EEE-04BE-438A-AD20-A8E849C9A107}.Release|ARM64.Build.0 = Release|ARM64 + {91E7C695-3307-4596-90E1-065AFB4D2643}.Release|ARM64.ActiveCfg = Release|ARM64 + {91E7C695-3307-4596-90E1-065AFB4D2643}.Release|ARM64.Build.0 = Release|ARM64 + {31C45025-FDA4-4CB5-B55E-81F934382654}.Release|ARM64.ActiveCfg = Release|ARM64 + {31C45025-FDA4-4CB5-B55E-81F934382654}.Release|ARM64.Build.0 = Release|ARM64 + {FCF21B34-353D-4F85-9EA0-C29978C12DBF}.Release|ARM64.ActiveCfg = Release|ARM64 + {FCF21B34-353D-4F85-9EA0-C29978C12DBF}.Release|ARM64.Build.0 = Release|ARM64 + {3CC42473-D121-41F4-AE26-1F2F0AC65E82}.Release|ARM64.ActiveCfg = Release|ARM64 + {3CC42473-D121-41F4-AE26-1F2F0AC65E82}.Release|ARM64.Build.0 = Release|ARM64 {71F91DD8-7891-4431-8F10-D33D2AA7F7AD}.Debug|Win32.ActiveCfg = Debug|Win32 {71F91DD8-7891-4431-8F10-D33D2AA7F7AD}.Debug|Win32.Build.0 = Debug|Win32 {71F91DD8-7891-4431-8F10-D33D2AA7F7AD}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/general/tracing/SystemTraceControl/SystemTraceControl.sln b/general/tracing/SystemTraceControl/SystemTraceControl.sln index a23781bc..b0f9a215 100644 --- a/general/tracing/SystemTraceControl/SystemTraceControl.sln +++ b/general/tracing/SystemTraceControl/SystemTraceControl.sln @@ -1,16 +1,22 @@ - + Microsoft Visual Studio Solution File, Format Version 11.00 # Visual Studio 2010 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SystemTraceControl", "SystemTraceControl.vcxproj", "{69BD6A4C-5051-E271-F174-E5E67BC09464}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Debug|x64 = Debug|x64 Release|Win32 = Release|Win32 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {69BD6A4C-5051-E271-F174-E5E67BC09464}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {69BD6A4C-5051-E271-F174-E5E67BC09464}.Debug|ARM64.Build.0 = Debug|ARM64 + {69BD6A4C-5051-E271-F174-E5E67BC09464}.Release|ARM64.ActiveCfg = Release|ARM64 + {69BD6A4C-5051-E271-F174-E5E67BC09464}.Release|ARM64.Build.0 = Release|ARM64 {69BD6A4C-5051-E271-F174-E5E67BC09464}.Debug|Win32.ActiveCfg = Debug|Win32 {69BD6A4C-5051-E271-F174-E5E67BC09464}.Debug|Win32.Build.0 = Debug|Win32 {69BD6A4C-5051-E271-F174-E5E67BC09464}.Debug|x64.ActiveCfg = Debug|x64 diff --git a/general/tracing/SystemTraceControl/SystemTraceControl.vcxproj b/general/tracing/SystemTraceControl/SystemTraceControl.vcxproj index 1d635e7e..69e4c1c4 100644 --- a/general/tracing/SystemTraceControl/SystemTraceControl.vcxproj +++ b/general/tracing/SystemTraceControl/SystemTraceControl.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -38,11 +46,21 @@ true WindowsApplicationForDrivers10.0 + + Application + true + WindowsApplicationForDrivers10.0 + Application false WindowsApplicationForDrivers10.0 + + Application + false + WindowsApplicationForDrivers10.0 + @@ -55,9 +73,15 @@ + + + + + + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) @@ -101,6 +125,20 @@ Console + + + WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDebugDLL + Level3 + ProgramDatabase + Disabled + + + MachineX64 + true + Console + + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) @@ -116,6 +154,21 @@ true + + + WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + ProgramDatabase + + + MachineX64 + true + Console + true + true + + diff --git a/general/tracing/evntdrv/Eventdrv/Eventdrv.vcxproj b/general/tracing/evntdrv/Eventdrv/Eventdrv.vcxproj index ad45a08e..ac256387 100644 --- a/general/tracing/evntdrv/Eventdrv/Eventdrv.vcxproj +++ b/general/tracing/evntdrv/Eventdrv/Eventdrv.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -89,9 +119,15 @@ Eventdrv + + Eventdrv + Eventdrv + + Eventdrv + Eventdrv @@ -111,6 +147,19 @@ %(AdditionalIncludeDirectories);. + + + %(AdditionalIncludeDirectories);. + + + %(AdditionalIncludeDirectories);. + true + Level4 + + + %(AdditionalIncludeDirectories);. + + %(AdditionalIncludeDirectories);. @@ -124,6 +173,19 @@ %(AdditionalIncludeDirectories);. + + + %(AdditionalIncludeDirectories);. + + + %(AdditionalIncludeDirectories);. + true + Level4 + + + %(AdditionalIncludeDirectories);. + + %(AdditionalIncludeDirectories);. @@ -163,6 +225,15 @@ sha256 + + + + + + + sha256 + + @@ -172,6 +243,15 @@ sha256 + + + + + + + sha256 + + @@ -203,4 +283,4 @@ - \ No newline at end of file + diff --git a/general/tracing/evntdrv/eventdrv.sln b/general/tracing/evntdrv/eventdrv.sln index 44f2e85a..4c73da8a 100644 --- a/general/tracing/evntdrv/eventdrv.sln +++ b/general/tracing/evntdrv/eventdrv.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -13,12 +13,22 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "evntctrl", "evntctrl\evntct EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A13F7165-72F7-4A07-90E6-CD1AB76F7751}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {A13F7165-72F7-4A07-90E6-CD1AB76F7751}.Debug|ARM64.Build.0 = Debug|ARM64 + {8829FAED-4C91-417C-929D-D076B1DB24C1}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {8829FAED-4C91-417C-929D-D076B1DB24C1}.Debug|ARM64.Build.0 = Debug|ARM64 + {A13F7165-72F7-4A07-90E6-CD1AB76F7751}.Release|ARM64.ActiveCfg = Release|ARM64 + {A13F7165-72F7-4A07-90E6-CD1AB76F7751}.Release|ARM64.Build.0 = Release|ARM64 + {8829FAED-4C91-417C-929D-D076B1DB24C1}.Release|ARM64.ActiveCfg = Release|ARM64 + {8829FAED-4C91-417C-929D-D076B1DB24C1}.Release|ARM64.Build.0 = Release|ARM64 {A13F7165-72F7-4A07-90E6-CD1AB76F7751}.Debug|Win32.ActiveCfg = Debug|Win32 {A13F7165-72F7-4A07-90E6-CD1AB76F7751}.Debug|Win32.Build.0 = Debug|Win32 {A13F7165-72F7-4A07-90E6-CD1AB76F7751}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/general/tracing/evntdrv/evntctrl/evntctrl.vcxproj b/general/tracing/evntdrv/evntctrl/evntctrl.vcxproj index 4a21b1aa..1ce216a5 100644 --- a/general/tracing/evntdrv/evntctrl/evntctrl.vcxproj +++ b/general/tracing/evntdrv/evntctrl/evntctrl.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ evntctrl + + evntctrl + evntctrl + + evntctrl + evntctrl @@ -98,6 +134,17 @@ %(AdditionalIncludeDirectories);.;..\Eventdrv + + + %(AdditionalIncludeDirectories);.;..\Eventdrv + + + %(AdditionalIncludeDirectories);.;..\Eventdrv + + + %(AdditionalIncludeDirectories);.;..\Eventdrv + + %(AdditionalIncludeDirectories);.;..\Eventdrv @@ -109,6 +156,17 @@ %(AdditionalIncludeDirectories);.;..\Eventdrv + + + %(AdditionalIncludeDirectories);.;..\Eventdrv + + + %(AdditionalIncludeDirectories);.;..\Eventdrv + + + %(AdditionalIncludeDirectories);.;..\Eventdrv + + %(AdditionalIncludeDirectories);.;..\Eventdrv @@ -148,4 +206,4 @@ - \ No newline at end of file + diff --git a/general/tracing/tracedriver/tracectl/tracectl.vcxproj b/general/tracing/tracedriver/tracectl/tracectl.vcxproj index 50f62668..dcf979ee 100644 --- a/general/tracing/tracedriver/tracectl/tracectl.vcxproj +++ b/general/tracing/tracedriver/tracectl/tracectl.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ tracectl + + tracectl + tracectl + + tracectl + tracectl @@ -98,6 +134,17 @@ %(AdditionalIncludeDirectories);.;..\tracedrv + + + %(AdditionalIncludeDirectories);.;..\tracedrv + + + %(AdditionalIncludeDirectories);.;..\tracedrv + + + %(AdditionalIncludeDirectories);.;..\tracedrv + + %(AdditionalIncludeDirectories);.;..\tracedrv @@ -109,6 +156,17 @@ %(AdditionalIncludeDirectories);.;..\tracedrv + + + %(AdditionalIncludeDirectories);.;..\tracedrv + + + %(AdditionalIncludeDirectories);.;..\tracedrv + + + %(AdditionalIncludeDirectories);.;..\tracedrv + + %(AdditionalIncludeDirectories);.;..\tracedrv @@ -148,4 +206,4 @@ - \ No newline at end of file + diff --git a/general/tracing/tracedriver/tracedrv.sln b/general/tracing/tracedriver/tracedrv.sln index abfe37fc..b788b9ff 100644 --- a/general/tracing/tracedriver/tracedrv.sln +++ b/general/tracing/tracedriver/tracedrv.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -13,12 +13,22 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tracedrv", "tracedrv\traced EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {3A4AE064-7AFC-43E2-8054-A7019C4BAE5F}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {3A4AE064-7AFC-43E2-8054-A7019C4BAE5F}.Debug|ARM64.Build.0 = Debug|ARM64 + {83A89A56-3A26-4016-95FC-4D19D192727E}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {83A89A56-3A26-4016-95FC-4D19D192727E}.Debug|ARM64.Build.0 = Debug|ARM64 + {3A4AE064-7AFC-43E2-8054-A7019C4BAE5F}.Release|ARM64.ActiveCfg = Release|ARM64 + {3A4AE064-7AFC-43E2-8054-A7019C4BAE5F}.Release|ARM64.Build.0 = Release|ARM64 + {83A89A56-3A26-4016-95FC-4D19D192727E}.Release|ARM64.ActiveCfg = Release|ARM64 + {83A89A56-3A26-4016-95FC-4D19D192727E}.Release|ARM64.Build.0 = Release|ARM64 {3A4AE064-7AFC-43E2-8054-A7019C4BAE5F}.Debug|Win32.ActiveCfg = Debug|Win32 {3A4AE064-7AFC-43E2-8054-A7019C4BAE5F}.Debug|Win32.Build.0 = Debug|Win32 {3A4AE064-7AFC-43E2-8054-A7019C4BAE5F}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/general/tracing/tracedriver/tracedrv/tracedrv.vcxproj b/general/tracing/tracedriver/tracedrv/tracedrv.vcxproj index 121e210c..aa097a34 100644 --- a/general/tracing/tracedriver/tracedrv/tracedrv.vcxproj +++ b/general/tracing/tracedriver/tracedrv/tracedrv.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -91,9 +121,15 @@ tracedrv + + tracedrv + tracedrv + + tracedrv + tracedrv @@ -114,6 +150,20 @@ sha256 + + + %(AdditionalIncludeDirectories);. + + + %(AdditionalIncludeDirectories);. + + + %(AdditionalIncludeDirectories);. + + + sha256 + + %(AdditionalIncludeDirectories);. @@ -128,6 +178,20 @@ sha256 + + + %(AdditionalIncludeDirectories);. + + + %(AdditionalIncludeDirectories);. + + + %(AdditionalIncludeDirectories);. + + + sha256 + + %(AdditionalIncludeDirectories);. @@ -172,4 +236,4 @@ - \ No newline at end of file + diff --git a/gpio/samples/sim.sln b/gpio/samples/sim.sln index f823ee24..6057f558 100644 --- a/gpio/samples/sim.sln +++ b/gpio/samples/sim.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 14.00 # Visual Studio 2015 VisualStudioVersion = 14.0 @@ -13,6 +13,8 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "simgpio_i2c", "simgpio_i2c\ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|arm = Debug|arm Debug|Win32 = Debug|Win32 Debug|x64 = Debug|x64 @@ -21,6 +23,22 @@ Global Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {213515FD-98F8-4889-96B5-FA898B4B4936}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {213515FD-98F8-4889-96B5-FA898B4B4936}.Debug|ARM64.Build.0 = Debug|ARM64 + {22BE34F1-0E41-4A26-B709-6CAB493F6CC7}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {22BE34F1-0E41-4A26-B709-6CAB493F6CC7}.Debug|ARM64.Build.0 = Debug|ARM64 + {A80FE9DD-C140-40F6-A3F4-55A2A55BFAD4}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {A80FE9DD-C140-40F6-A3F4-55A2A55BFAD4}.Debug|ARM64.Build.0 = Debug|ARM64 + {380694FF-9A67-4FB0-B108-7696280BD7B6}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {380694FF-9A67-4FB0-B108-7696280BD7B6}.Debug|ARM64.Build.0 = Debug|ARM64 + {213515FD-98F8-4889-96B5-FA898B4B4936}.Release|ARM64.ActiveCfg = Release|ARM64 + {213515FD-98F8-4889-96B5-FA898B4B4936}.Release|ARM64.Build.0 = Release|ARM64 + {22BE34F1-0E41-4A26-B709-6CAB493F6CC7}.Release|ARM64.ActiveCfg = Release|ARM64 + {22BE34F1-0E41-4A26-B709-6CAB493F6CC7}.Release|ARM64.Build.0 = Release|ARM64 + {A80FE9DD-C140-40F6-A3F4-55A2A55BFAD4}.Release|ARM64.ActiveCfg = Release|ARM64 + {A80FE9DD-C140-40F6-A3F4-55A2A55BFAD4}.Release|ARM64.Build.0 = Release|ARM64 + {380694FF-9A67-4FB0-B108-7696280BD7B6}.Release|ARM64.ActiveCfg = Release|ARM64 + {380694FF-9A67-4FB0-B108-7696280BD7B6}.Release|ARM64.Build.0 = Release|ARM64 {213515FD-98F8-4889-96B5-FA898B4B4936}.Debug|arm.ActiveCfg = Debug|arm {213515FD-98F8-4889-96B5-FA898B4B4936}.Debug|arm.Build.0 = Debug|arm {213515FD-98F8-4889-96B5-FA898B4B4936}.Debug|arm.Deploy.0 = Debug|arm diff --git a/gpio/samples/simdevice/kmdf/simdevice.vcxproj b/gpio/samples/simdevice/kmdf/simdevice.vcxproj index 61ecaaa8..f9d861a8 100644 --- a/gpio/samples/simdevice/kmdf/simdevice.vcxproj +++ b/gpio/samples/simdevice/kmdf/simdevice.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug arm @@ -44,6 +52,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Universal + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -60,6 +76,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Universal + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -91,12 +115,18 @@ + + + + + + @@ -111,6 +141,11 @@ .sys true + + simdevice + .sys + true + simdevice .sys @@ -122,6 +157,11 @@ .sys true + + simdevice + .sys + true + simdevice .sys @@ -159,6 +199,27 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ksguid.lib;$(DDK_LIB_PATH)\ntstrsafe.lib + + + %(AdditionalIncludeDirectories);..\..\..\inc + + + %(AdditionalIncludeDirectories);..\..\..\inc + true + Level4 + + + + + %(AdditionalIncludeDirectories);..\..\..\inc + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ksguid.lib;$(DDK_LIB_PATH)\ntstrsafe.lib @@ -198,6 +259,27 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ksguid.lib;$(DDK_LIB_PATH)\ntstrsafe.lib + + + %(AdditionalIncludeDirectories);..\..\..\inc + + + %(AdditionalIncludeDirectories);..\..\..\inc + true + Level4 + + + + + %(AdditionalIncludeDirectories);..\..\..\inc + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ksguid.lib;$(DDK_LIB_PATH)\ntstrsafe.lib @@ -276,4 +358,4 @@ - \ No newline at end of file + diff --git a/gpio/samples/simdevice/umdf/simdeviceumdf.vcxproj b/gpio/samples/simdevice/umdf/simdeviceumdf.vcxproj index 2a246f7d..56c9202e 100644 --- a/gpio/samples/simdevice/umdf/simdeviceumdf.vcxproj +++ b/gpio/samples/simdevice/umdf/simdeviceumdf.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug arm @@ -44,6 +52,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + False + Universal + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 False @@ -60,6 +76,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + True + Universal + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 True @@ -91,12 +115,18 @@ + + + + + + @@ -120,6 +150,11 @@ .dll true + + simdeviceumdf + .dll + true + simdeviceumdf .dll @@ -131,6 +166,11 @@ .dll true + + simdeviceumdf + .dll + true + simdeviceumdf .dll @@ -168,6 +208,27 @@ sha256 + + + %(AdditionalDependencies); + + + %(AdditionalIncludeDirectories);..\..\..\inc + + + %(AdditionalIncludeDirectories);..\..\..\inc + true + Level4 + + + + + %(AdditionalIncludeDirectories);..\..\..\inc + + + sha256 + + %(AdditionalDependencies); @@ -207,6 +268,27 @@ sha256 + + + %(AdditionalDependencies); + + + %(AdditionalIncludeDirectories);..\..\..\inc + + + %(AdditionalIncludeDirectories);..\..\..\inc + true + Level4 + + + + + %(AdditionalIncludeDirectories);..\..\..\inc + + + sha256 + + %(AdditionalDependencies); @@ -284,4 +366,4 @@ - \ No newline at end of file + diff --git a/gpio/samples/simgpio/simgpio.vcxproj b/gpio/samples/simgpio/simgpio.vcxproj index 83cb53bd..0c550fdd 100644 --- a/gpio/samples/simgpio/simgpio.vcxproj +++ b/gpio/samples/simgpio/simgpio.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -36,6 +44,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Universal + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -44,6 +60,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Universal + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -67,9 +91,15 @@ + + + + + + @@ -88,9 +118,15 @@ simgpio + + simgpio + simgpio + + simgpio + simgpio @@ -111,6 +147,20 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ksguid.lib;$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\msgpioclxstub.lib + + + true + Level4 + + + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ksguid.lib;$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\msgpioclxstub.lib @@ -125,6 +175,20 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ksguid.lib;$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\msgpioclxstub.lib + + + true + Level4 + + + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ksguid.lib;$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\msgpioclxstub.lib @@ -170,4 +234,4 @@ - \ No newline at end of file + diff --git a/gpio/samples/simgpio_i2c/simgpio_i2c.vcxproj b/gpio/samples/simgpio_i2c/simgpio_i2c.vcxproj index 981f6178..6293f467 100644 --- a/gpio/samples/simgpio_i2c/simgpio_i2c.vcxproj +++ b/gpio/samples/simgpio_i2c/simgpio_i2c.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -36,6 +44,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Universal + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -44,6 +60,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Universal + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -67,9 +91,15 @@ + + + + + + @@ -100,9 +130,15 @@ simgpio_i2c + + simgpio_i2c + simgpio_i2c + + simgpio_i2c + simgpio_i2c @@ -130,6 +166,27 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ksguid.lib;$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\msgpioclxstub.lib + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SPB_INC_PATH)\$(SPB_VERSION_MAJOR).$(SPB_VERSION_MINOR) + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SPB_INC_PATH)\$(SPB_VERSION_MAJOR).$(SPB_VERSION_MINOR) + true + Level4 + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SPB_INC_PATH)\$(SPB_VERSION_MAJOR).$(SPB_VERSION_MINOR) + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ksguid.lib;$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\msgpioclxstub.lib @@ -151,6 +208,27 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ksguid.lib;$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\msgpioclxstub.lib + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SPB_INC_PATH)\$(SPB_VERSION_MAJOR).$(SPB_VERSION_MINOR) + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SPB_INC_PATH)\$(SPB_VERSION_MAJOR).$(SPB_VERSION_MINOR) + true + Level4 + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SPB_INC_PATH)\$(SPB_VERSION_MAJOR).$(SPB_VERSION_MINOR) + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ksguid.lib;$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\msgpioclxstub.lib @@ -209,4 +287,4 @@ - \ No newline at end of file + diff --git a/hid/firefly/app/flicker.vcxproj b/hid/firefly/app/flicker.vcxproj index 4fad0493..3815a0d9 100644 --- a/hid/firefly/app/flicker.vcxproj +++ b/hid/firefly/app/flicker.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ flicker + + flicker + flicker + + flicker + flicker @@ -108,6 +144,27 @@ %(AdditionalIncludeDirectories);..\shared + + + %(AdditionalDependencies);.\..\lib\$(IntDir)\luminous.lib;ole32.lib;oleaut32.lib;wbemuuid.lib + + + true + Level4 + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);..\shared + + + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);..\shared + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);..\shared + + %(AdditionalDependencies);.\..\lib\$(IntDir)\luminous.lib;ole32.lib;oleaut32.lib;wbemuuid.lib @@ -129,6 +186,27 @@ %(AdditionalIncludeDirectories);..\shared + + + %(AdditionalDependencies);.\..\lib\$(IntDir)\luminous.lib;ole32.lib;oleaut32.lib;wbemuuid.lib + + + true + Level4 + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);..\shared + + + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);..\shared + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);..\shared + + %(AdditionalDependencies);.\..\lib\$(IntDir)\luminous.lib;ole32.lib;oleaut32.lib;wbemuuid.lib @@ -187,4 +265,4 @@ - \ No newline at end of file + diff --git a/hid/firefly/driver/firefly.vcxproj b/hid/firefly/driver/firefly.vcxproj index 1530c39d..80165e69 100644 --- a/hid/firefly/driver/firefly.vcxproj +++ b/hid/firefly/driver/firefly.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -87,9 +117,15 @@ firefly + + firefly + firefly + + firefly + firefly @@ -115,6 +151,25 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\hidparse.lib + + + %(PreprocessorDefinitions) + + + + + %(PreprocessorDefinitions) + + + %(PreprocessorDefinitions) + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\hidparse.lib @@ -134,6 +189,25 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\hidparse.lib + + + %(PreprocessorDefinitions) + + + + + %(PreprocessorDefinitions) + + + %(PreprocessorDefinitions) + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\hidparse.lib @@ -192,4 +266,4 @@ - \ No newline at end of file + diff --git a/hid/firefly/firefly.sln b/hid/firefly/firefly.sln index fe9d8c89..4b005e66 100644 --- a/hid/firefly/firefly.sln +++ b/hid/firefly/firefly.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -27,12 +27,30 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SAURON", "sauron\SAURON.vcx EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {2CA2838E-CE8B-4506-80B3-AAB7F19A3AD1}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {2CA2838E-CE8B-4506-80B3-AAB7F19A3AD1}.Debug|ARM64.Build.0 = Debug|ARM64 + {BB81C655-EEF5-434F-BB2A-4B8D1358ECE4}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {BB81C655-EEF5-434F-BB2A-4B8D1358ECE4}.Debug|ARM64.Build.0 = Debug|ARM64 + {FF968AD9-B8FF-450D-93A0-4CC5AC2B49B5}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {FF968AD9-B8FF-450D-93A0-4CC5AC2B49B5}.Debug|ARM64.Build.0 = Debug|ARM64 + {571518A8-F812-42E0-A538-31183C3ED059}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {571518A8-F812-42E0-A538-31183C3ED059}.Debug|ARM64.Build.0 = Debug|ARM64 + {2CA2838E-CE8B-4506-80B3-AAB7F19A3AD1}.Release|ARM64.ActiveCfg = Release|ARM64 + {2CA2838E-CE8B-4506-80B3-AAB7F19A3AD1}.Release|ARM64.Build.0 = Release|ARM64 + {BB81C655-EEF5-434F-BB2A-4B8D1358ECE4}.Release|ARM64.ActiveCfg = Release|ARM64 + {BB81C655-EEF5-434F-BB2A-4B8D1358ECE4}.Release|ARM64.Build.0 = Release|ARM64 + {FF968AD9-B8FF-450D-93A0-4CC5AC2B49B5}.Release|ARM64.ActiveCfg = Release|ARM64 + {FF968AD9-B8FF-450D-93A0-4CC5AC2B49B5}.Release|ARM64.Build.0 = Release|ARM64 + {571518A8-F812-42E0-A538-31183C3ED059}.Release|ARM64.ActiveCfg = Release|ARM64 + {571518A8-F812-42E0-A538-31183C3ED059}.Release|ARM64.Build.0 = Release|ARM64 {2CA2838E-CE8B-4506-80B3-AAB7F19A3AD1}.Debug|Win32.ActiveCfg = Debug|Win32 {2CA2838E-CE8B-4506-80B3-AAB7F19A3AD1}.Debug|Win32.Build.0 = Debug|Win32 {2CA2838E-CE8B-4506-80B3-AAB7F19A3AD1}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/hid/firefly/lib/Luminous.vcxproj b/hid/firefly/lib/Luminous.vcxproj index e879b7fc..abce9bd7 100644 --- a/hid/firefly/lib/Luminous.vcxproj +++ b/hid/firefly/lib/Luminous.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 StaticLibrary + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + StaticLibrary + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 StaticLibrary + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + StaticLibrary + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ Luminous + + Luminous + Luminous + + Luminous + Luminous @@ -108,6 +144,27 @@ %(AdditionalDependencies);ole32.lib;oleaut32.lib + + + true + Level4 + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);..\shared + + + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);..\shared + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);..\shared + + + %(AdditionalDependencies);ole32.lib;oleaut32.lib + + true @@ -129,6 +186,27 @@ %(AdditionalDependencies);ole32.lib;oleaut32.lib + + + true + Level4 + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);..\shared + + + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);..\shared + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);..\shared + + + %(AdditionalDependencies);ole32.lib;oleaut32.lib + + true @@ -187,4 +265,4 @@ - \ No newline at end of file + diff --git a/hid/firefly/sauron/SAURON.vcxproj b/hid/firefly/sauron/SAURON.vcxproj index ae077a7d..d0012722 100644 --- a/hid/firefly/sauron/SAURON.vcxproj +++ b/hid/firefly/sauron/SAURON.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -80,11 +110,21 @@ .DLL $(OutDir)$(TargetName)$(TargetExt) + + SAURON + .DLL + $(OutDir)$(TargetName)$(TargetExt) + SAURON .DLL $(OutDir)$(TargetName)$(TargetExt) + + SAURON + .DLL + $(OutDir)$(TargetName)$(TargetExt) + SAURON .DLL @@ -101,12 +141,24 @@ _DllMainCRTStartup + + + _DllMainCRTStartup@12 + _DllMainCRTStartup + + _DllMainCRTStartup@12 _DllMainCRTStartup + + + _DllMainCRTStartup@12 + _DllMainCRTStartup + + _DllMainCRTStartup@12 @@ -138,6 +190,25 @@ %(AdditionalDependencies);advapi32.lib;comctl32.lib;kernel32.lib;ole32.lib;oleaut32.lib;user32.lib;gdi32.lib;uuid.lib;wbemuuid.lib;.\..\lib\$(IntDir)\luminous.lib + + + %(AdditionalIncludeDirectories);..\shared + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalIncludeDirectories);..\shared + true + Level4 + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalIncludeDirectories);..\shared + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalDependencies);advapi32.lib;comctl32.lib;kernel32.lib;ole32.lib;oleaut32.lib;user32.lib;gdi32.lib;uuid.lib;wbemuuid.lib;.\..\lib\$(IntDir)\luminous.lib + + %(AdditionalIncludeDirectories);..\shared @@ -157,6 +228,25 @@ %(AdditionalDependencies);advapi32.lib;comctl32.lib;kernel32.lib;ole32.lib;oleaut32.lib;user32.lib;gdi32.lib;uuid.lib;wbemuuid.lib;.\..\lib\$(IntDir)\luminous.lib + + + %(AdditionalIncludeDirectories);..\shared + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalIncludeDirectories);..\shared + true + Level4 + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalIncludeDirectories);..\shared + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalDependencies);advapi32.lib;comctl32.lib;kernel32.lib;ole32.lib;oleaut32.lib;user32.lib;gdi32.lib;uuid.lib;wbemuuid.lib;.\..\lib\$(IntDir)\luminous.lib + + %(AdditionalIncludeDirectories);..\shared @@ -200,11 +290,21 @@ %(AdditionalOptions) -n + + + %(AdditionalOptions) -n + + %(AdditionalOptions) -n + + + %(AdditionalOptions) -n + + %(AdditionalOptions) -n @@ -218,9 +318,15 @@ Static + + Static + Static + + Static + Static @@ -236,6 +342,15 @@ SauronDll.def + + + Sync + true + + + SauronDll.def + + Sync @@ -245,6 +360,15 @@ SauronDll.def + + + Sync + true + + + SauronDll.def + + Sync @@ -299,4 +423,4 @@ - \ No newline at end of file + diff --git a/hid/hclient/hclient.sln b/hid/hclient/hclient.sln index 994bc4e9..8698adb6 100644 --- a/hid/hclient/hclient.sln +++ b/hid/hclient/hclient.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "hclient", "hclient.vcxproj" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {1C842832-07EF-4A86-B46F-8CE77446E7FE}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {1C842832-07EF-4A86-B46F-8CE77446E7FE}.Debug|ARM64.Build.0 = Debug|ARM64 + {1C842832-07EF-4A86-B46F-8CE77446E7FE}.Release|ARM64.ActiveCfg = Release|ARM64 + {1C842832-07EF-4A86-B46F-8CE77446E7FE}.Release|ARM64.Build.0 = Release|ARM64 {1C842832-07EF-4A86-B46F-8CE77446E7FE}.Debug|Win32.ActiveCfg = Debug|Win32 {1C842832-07EF-4A86-B46F-8CE77446E7FE}.Debug|Win32.Build.0 = Debug|Win32 {1C842832-07EF-4A86-B46F-8CE77446E7FE}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/hid/hclient/hclient.vcxproj b/hid/hclient/hclient.vcxproj index ab5ce5e7..c7d4fa23 100644 --- a/hid/hclient/hclient.vcxproj +++ b/hid/hclient/hclient.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Desktop + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Desktop + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ hclient + + hclient + hclient + + hclient + hclient @@ -108,6 +144,27 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories) + + + + + %(AdditionalDependencies);hid.lib;setupapi.lib;comdlg32.lib;shell32.lib + + + %(AdditionalIncludeDirectories) + + + %(AdditionalIncludeDirectories) + + + sha256 + + true @@ -129,6 +186,27 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories) + + + + + %(AdditionalDependencies);hid.lib;setupapi.lib;comdlg32.lib;shell32.lib + + + %(AdditionalIncludeDirectories) + + + %(AdditionalIncludeDirectories) + + + sha256 + + true @@ -193,4 +271,4 @@ - \ No newline at end of file + diff --git a/hid/hidusbfx2/Package/package.VcxProj b/hid/hidusbfx2/Package/package.VcxProj index 6955b7da..bc70a7ec 100644 --- a/hid/hidusbfx2/Package/package.VcxProj +++ b/hid/hidusbfx2/Package/package.VcxProj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -51,10 +59,18 @@ Windows10 true + + Windows10 + true + Windows10 false + + Windows10 + false + @@ -87,4 +103,4 @@ - \ No newline at end of file + diff --git a/hid/hidusbfx2/hidkmdf/hidkmdf.vcxproj b/hid/hidusbfx2/hidkmdf/hidkmdf.vcxproj index e1352f60..c80e74c4 100644 --- a/hid/hidusbfx2/hidkmdf/hidkmdf.vcxproj +++ b/hid/hidusbfx2/hidkmdf/hidkmdf.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -36,6 +44,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -44,6 +60,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -67,9 +91,15 @@ + + + + + + @@ -80,9 +110,15 @@ hidkmdf + + hidkmdf + hidkmdf + + hidkmdf + hidkmdf @@ -101,6 +137,18 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\hidclass.lib + + + + + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\hidclass.lib @@ -113,6 +161,18 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\hidclass.lib + + + + + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\hidclass.lib @@ -154,4 +214,4 @@ - \ No newline at end of file + diff --git a/hid/hidusbfx2/hidusbfx2.sln b/hid/hidusbfx2/hidusbfx2.sln index 47e5c110..cd0053e0 100644 --- a/hid/hidusbfx2/hidusbfx2.sln +++ b/hid/hidusbfx2/hidusbfx2.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -17,12 +17,26 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "hidkmdf", "hidkmdf\hidkmdf. EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D32BA7A3-463D-472E-B414-BE9EA92A508E}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {D32BA7A3-463D-472E-B414-BE9EA92A508E}.Debug|ARM64.Build.0 = Debug|ARM64 + {831A5B8C-BA01-4783-8A86-A289730FF224}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {831A5B8C-BA01-4783-8A86-A289730FF224}.Debug|ARM64.Build.0 = Debug|ARM64 + {EC5DCAF5-3514-4E61-8201-10F5F060E096}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {EC5DCAF5-3514-4E61-8201-10F5F060E096}.Debug|ARM64.Build.0 = Debug|ARM64 + {D32BA7A3-463D-472E-B414-BE9EA92A508E}.Release|ARM64.ActiveCfg = Release|ARM64 + {D32BA7A3-463D-472E-B414-BE9EA92A508E}.Release|ARM64.Build.0 = Release|ARM64 + {831A5B8C-BA01-4783-8A86-A289730FF224}.Release|ARM64.ActiveCfg = Release|ARM64 + {831A5B8C-BA01-4783-8A86-A289730FF224}.Release|ARM64.Build.0 = Release|ARM64 + {EC5DCAF5-3514-4E61-8201-10F5F060E096}.Release|ARM64.ActiveCfg = Release|ARM64 + {EC5DCAF5-3514-4E61-8201-10F5F060E096}.Release|ARM64.Build.0 = Release|ARM64 {D32BA7A3-463D-472E-B414-BE9EA92A508E}.Debug|Win32.ActiveCfg = Debug|Win32 {D32BA7A3-463D-472E-B414-BE9EA92A508E}.Debug|Win32.Build.0 = Debug|Win32 {D32BA7A3-463D-472E-B414-BE9EA92A508E}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/hid/hidusbfx2/sys/hidusbfx2.vcxproj b/hid/hidusbfx2/sys/hidusbfx2.vcxproj index 8df137b8..6a193124 100644 --- a/hid/hidusbfx2/sys/hidusbfx2.vcxproj +++ b/hid/hidusbfx2/sys/hidusbfx2.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -37,6 +45,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -45,6 +61,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -68,9 +92,15 @@ + + + + + + @@ -94,9 +124,15 @@ hidusbfx2 + + hidusbfx2 + hidusbfx2 + + hidusbfx2 + hidusbfx2 @@ -122,6 +158,25 @@ sha256 + + + true + Level4 + %(PreprocessorDefinitions);EVENT_TRACING + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\hidclass.lib;$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\usbd.lib + + + %(PreprocessorDefinitions);EVENT_TRACING + + + %(PreprocessorDefinitions);EVENT_TRACING + + + sha256 + + true @@ -141,6 +196,25 @@ sha256 + + + true + Level4 + %(PreprocessorDefinitions);EVENT_TRACING + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\hidclass.lib;$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\usbd.lib + + + %(PreprocessorDefinitions);EVENT_TRACING + + + %(PreprocessorDefinitions);EVENT_TRACING + + + sha256 + + true @@ -182,9 +256,15 @@ 1 + + 1 + 1 + + 1 + 1 @@ -197,12 +277,24 @@ + + + + + + + + + + + + @@ -231,4 +323,4 @@ - \ No newline at end of file + diff --git a/hid/vhidmini2/app/testvhid.vcxproj b/hid/vhidmini2/app/testvhid.vcxproj index f87a1a07..51132a74 100644 --- a/hid/vhidmini2/app/testvhid.vcxproj +++ b/hid/vhidmini2/app/testvhid.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ testvhid + + testvhid + testvhid + + testvhid + testvhid @@ -109,6 +145,28 @@ sha256 + + + %(AdditionalDependencies);hid.lib;mincore.lib;comdlg32.lib + + + %(AdditionalIncludeDirectories);..\inc + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalIncludeDirectories);..\inc + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + + + %(AdditionalIncludeDirectories);..\inc + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + sha256 + + %(AdditionalDependencies);hid.lib;mincore.lib;comdlg32.lib @@ -131,6 +189,28 @@ sha256 + + + %(AdditionalDependencies);hid.lib;mincore.lib;comdlg32.lib + + + %(AdditionalIncludeDirectories);..\inc + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalIncludeDirectories);..\inc + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + + + %(AdditionalIncludeDirectories);..\inc + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + sha256 + + %(AdditionalDependencies);hid.lib;mincore.lib;comdlg32.lib @@ -192,4 +272,4 @@ - \ No newline at end of file + diff --git a/hid/vhidmini2/driver/kmdf/vhidmini.vcxproj b/hid/vhidmini2/driver/kmdf/vhidmini.vcxproj index d1f5ba70..17a05969 100644 --- a/hid/vhidmini2/driver/kmdf/vhidmini.vcxproj +++ b/hid/vhidmini2/driver/kmdf/vhidmini.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -79,9 +109,15 @@ vhidmini + + vhidmini + vhidmini + + vhidmini + vhidmini @@ -107,6 +143,25 @@ sha256 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;POOL_NX_OPTIN=1 + %(AdditionalIncludeDirectories);..\..\inc;.. + + + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;POOL_NX_OPTIN=1 + %(AdditionalIncludeDirectories);..\..\inc;.. + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;POOL_NX_OPTIN=1 + %(AdditionalIncludeDirectories);..\..\inc;.. + + + sha256 + + %(PreprocessorDefinitions);_UNICODE;UNICODE;POOL_NX_OPTIN=1 @@ -126,6 +181,25 @@ sha256 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;POOL_NX_OPTIN=1 + %(AdditionalIncludeDirectories);..\..\inc;.. + + + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;POOL_NX_OPTIN=1 + %(AdditionalIncludeDirectories);..\..\inc;.. + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;POOL_NX_OPTIN=1 + %(AdditionalIncludeDirectories);..\..\inc;.. + + + sha256 + + %(PreprocessorDefinitions);_UNICODE;UNICODE;POOL_NX_OPTIN=1 @@ -182,4 +256,4 @@ - \ No newline at end of file + diff --git a/hid/vhidmini2/driver/umdf2/VhidminiUm.vcxproj b/hid/vhidmini2/driver/umdf2/VhidminiUm.vcxproj index 8db699cd..0abe9a38 100644 --- a/hid/vhidmini2/driver/umdf2/VhidminiUm.vcxproj +++ b/hid/vhidmini2/driver/umdf2/VhidminiUm.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + False + Windows Driver + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 True @@ -43,6 +59,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + True + Windows Driver + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -79,9 +109,15 @@ VhidminiUm + + VhidminiUm + VhidminiUm + + VhidminiUm + VhidminiUm @@ -108,6 +144,26 @@ sha256 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(DDK_INC_PATH)\wdm;..\..\inc;.. + + + %(PreprocessorDefinitions);_UNICODE;UNICODE + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(DDK_INC_PATH)\wdm;..\..\inc;.. + + + %(PreprocessorDefinitions);_UNICODE;UNICODE + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(DDK_INC_PATH)\wdm;..\..\inc;.. + + + %(AdditionalDependencies);mincore.lib + + + sha256 + + %(PreprocessorDefinitions);_UNICODE;UNICODE @@ -128,6 +184,26 @@ sha256 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(DDK_INC_PATH)\wdm;..\..\inc;.. + + + %(PreprocessorDefinitions);_UNICODE;UNICODE + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(DDK_INC_PATH)\wdm;..\..\inc;.. + + + %(PreprocessorDefinitions);_UNICODE;UNICODE + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(DDK_INC_PATH)\wdm;..\..\inc;.. + + + %(AdditionalDependencies);mincore.lib + + + sha256 + + %(PreprocessorDefinitions);_UNICODE;UNICODE @@ -174,12 +250,24 @@ + + + + + + + + + + + + @@ -210,4 +298,4 @@ - \ No newline at end of file + diff --git a/hid/vhidmini2/vhidmini2.sln b/hid/vhidmini2/vhidmini2.sln index 6a8e150c..77b5c4db 100644 --- a/hid/vhidmini2/vhidmini2.sln +++ b/hid/vhidmini2/vhidmini2.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -19,12 +19,26 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "vhidmini", "driver\kmdf\vhi EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {36B830C1-B73B-4CEE-B872-FD7D09268BD0}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {36B830C1-B73B-4CEE-B872-FD7D09268BD0}.Debug|ARM64.Build.0 = Debug|ARM64 + {EEECA421-064D-4E2E-8832-B0F43A9B394C}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {EEECA421-064D-4E2E-8832-B0F43A9B394C}.Debug|ARM64.Build.0 = Debug|ARM64 + {64048006-1C5F-4262-823B-54310D7F3869}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {64048006-1C5F-4262-823B-54310D7F3869}.Debug|ARM64.Build.0 = Debug|ARM64 + {36B830C1-B73B-4CEE-B872-FD7D09268BD0}.Release|ARM64.ActiveCfg = Release|ARM64 + {36B830C1-B73B-4CEE-B872-FD7D09268BD0}.Release|ARM64.Build.0 = Release|ARM64 + {EEECA421-064D-4E2E-8832-B0F43A9B394C}.Release|ARM64.ActiveCfg = Release|ARM64 + {EEECA421-064D-4E2E-8832-B0F43A9B394C}.Release|ARM64.Build.0 = Release|ARM64 + {64048006-1C5F-4262-823B-54310D7F3869}.Release|ARM64.ActiveCfg = Release|ARM64 + {64048006-1C5F-4262-823B-54310D7F3869}.Release|ARM64.Build.0 = Release|ARM64 {36B830C1-B73B-4CEE-B872-FD7D09268BD0}.Debug|Win32.ActiveCfg = Debug|Win32 {36B830C1-B73B-4CEE-B872-FD7D09268BD0}.Debug|Win32.Build.0 = Debug|Win32 {36B830C1-B73B-4CEE-B872-FD7D09268BD0}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/input/kbfiltr/exe/kbftest.vcxproj b/input/kbfiltr/exe/kbftest.vcxproj index ad510aab..786bac45 100644 --- a/input/kbfiltr/exe/kbftest.vcxproj +++ b/input/kbfiltr/exe/kbftest.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Desktop + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Desktop + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ kbftest + + kbftest + kbftest + + kbftest + kbftest @@ -99,6 +135,18 @@ sha256 + + + %(AdditionalDependencies);setupapi.lib + + + + + + + sha256 + + %(AdditionalDependencies);setupapi.lib @@ -111,6 +159,18 @@ sha256 + + + %(AdditionalDependencies);setupapi.lib + + + + + + + sha256 + + %(AdditionalDependencies);setupapi.lib @@ -151,4 +211,4 @@ - \ No newline at end of file + diff --git a/input/kbfiltr/kbfiltr.sln b/input/kbfiltr/kbfiltr.sln index a5a26331..3149419b 100644 --- a/input/kbfiltr/kbfiltr.sln +++ b/input/kbfiltr/kbfiltr.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -13,12 +13,22 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "kbfiltr", "sys\kbfiltr.vcxp EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {CB35D9AC-AD35-4381-ADA4-84378289F086}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {CB35D9AC-AD35-4381-ADA4-84378289F086}.Debug|ARM64.Build.0 = Debug|ARM64 + {7227DB35-883A-4EF0-B083-1698CFEF85A3}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {7227DB35-883A-4EF0-B083-1698CFEF85A3}.Debug|ARM64.Build.0 = Debug|ARM64 + {CB35D9AC-AD35-4381-ADA4-84378289F086}.Release|ARM64.ActiveCfg = Release|ARM64 + {CB35D9AC-AD35-4381-ADA4-84378289F086}.Release|ARM64.Build.0 = Release|ARM64 + {7227DB35-883A-4EF0-B083-1698CFEF85A3}.Release|ARM64.ActiveCfg = Release|ARM64 + {7227DB35-883A-4EF0-B083-1698CFEF85A3}.Release|ARM64.Build.0 = Release|ARM64 {CB35D9AC-AD35-4381-ADA4-84378289F086}.Debug|Win32.ActiveCfg = Debug|Win32 {CB35D9AC-AD35-4381-ADA4-84378289F086}.Debug|Win32.Build.0 = Debug|Win32 {CB35D9AC-AD35-4381-ADA4-84378289F086}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/input/kbfiltr/sys/kbfiltr.vcxproj b/input/kbfiltr/sys/kbfiltr.vcxproj index ad4d5a32..6c5c549a 100644 --- a/input/kbfiltr/sys/kbfiltr.vcxproj +++ b/input/kbfiltr/sys/kbfiltr.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -79,9 +109,15 @@ kbfiltr + + kbfiltr + kbfiltr + + kbfiltr + kbfiltr @@ -102,6 +138,20 @@ sha256 + + + true + Level4 + + + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\wdmsec.lib;$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\rtlver.lib + + + sha256 + + true @@ -116,6 +166,20 @@ sha256 + + + true + Level4 + + + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\wdmsec.lib;$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\rtlver.lib + + + sha256 + + true @@ -162,4 +226,4 @@ - \ No newline at end of file + diff --git a/input/layout/all_kbds/kbdfr/kbdfr.vcxproj b/input/layout/all_kbds/kbdfr/kbdfr.vcxproj index 08adb730..c205c4bc 100644 --- a/input/layout/all_kbds/kbdfr/kbdfr.vcxproj +++ b/input/layout/all_kbds/kbdfr/kbdfr.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ kbdfr + + kbdfr + kbdfr + + kbdfr + kbdfr @@ -104,6 +140,23 @@ %(AdditionalDependencies) + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions) + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions) + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions) + + + %(AdditionalDependencies) + + %(AdditionalIncludeDirectories);..\..\inc @@ -121,6 +174,23 @@ %(AdditionalDependencies) + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions) + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions) + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions) + + + %(AdditionalDependencies) + + %(AdditionalIncludeDirectories);..\..\inc @@ -166,6 +236,17 @@ + + + %(AdditionalOptions) -merge:.edata=.data -merge:.rdata=.data -merge:.text=.data -merge:.bss=.data -section:.data,re + %(AdditionalOptions) /ignore:4254 + kbdfr.def + + + + + + %(AdditionalOptions) -merge:.edata=.data -merge:.rdata=.data -merge:.text=.data -merge:.bss=.data -section:.data,re @@ -177,6 +258,17 @@ + + + %(AdditionalOptions) -merge:.edata=.data -merge:.rdata=.data -merge:.text=.data -merge:.bss=.data -section:.data,re + %(AdditionalOptions) /ignore:4254 + kbdfr.def + + + + + + %(AdditionalOptions) -merge:.edata=.data -merge:.rdata=.data -merge:.text=.data -merge:.bss=.data -section:.data,re @@ -216,4 +308,4 @@ - \ No newline at end of file + diff --git a/input/layout/all_kbds/kbdgr/kbdgr.vcxproj b/input/layout/all_kbds/kbdgr/kbdgr.vcxproj index c2e9fb82..9f87eec6 100644 --- a/input/layout/all_kbds/kbdgr/kbdgr.vcxproj +++ b/input/layout/all_kbds/kbdgr/kbdgr.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ kbdgr + + kbdgr + kbdgr + + kbdgr + kbdgr @@ -104,6 +140,23 @@ %(AdditionalDependencies) + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions) + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions) + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions) + + + %(AdditionalDependencies) + + %(AdditionalIncludeDirectories);..\..\inc @@ -121,6 +174,23 @@ %(AdditionalDependencies) + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions) + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions) + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions) + + + %(AdditionalDependencies) + + %(AdditionalIncludeDirectories);..\..\inc @@ -166,6 +236,17 @@ + + + %(AdditionalOptions) -merge:.edata=.data -merge:.rdata=.data -merge:.text=.data -merge:.bss=.data -section:.data,re + %(AdditionalOptions) /ignore:4254 + kbdgr.def + + + + + + %(AdditionalOptions) -merge:.edata=.data -merge:.rdata=.data -merge:.text=.data -merge:.bss=.data -section:.data,re @@ -177,6 +258,17 @@ + + + %(AdditionalOptions) -merge:.edata=.data -merge:.rdata=.data -merge:.text=.data -merge:.bss=.data -section:.data,re + %(AdditionalOptions) /ignore:4254 + kbdgr.def + + + + + + %(AdditionalOptions) -merge:.edata=.data -merge:.rdata=.data -merge:.text=.data -merge:.bss=.data -section:.data,re @@ -216,4 +308,4 @@ - \ No newline at end of file + diff --git a/input/layout/fe_kbds/jpn/101/kbd101.vcxproj b/input/layout/fe_kbds/jpn/101/kbd101.vcxproj index 40bfd37e..c6659ba6 100644 --- a/input/layout/fe_kbds/jpn/101/kbd101.vcxproj +++ b/input/layout/fe_kbds/jpn/101/kbd101.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ kbd101 + + kbd101 + kbd101 + + kbd101 + kbd101 @@ -104,6 +140,23 @@ %(AdditionalDependencies) + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions) + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions) + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions) + + + %(AdditionalDependencies) + + %(AdditionalIncludeDirectories);..\..\inc @@ -121,6 +174,23 @@ %(AdditionalDependencies) + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions) + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions) + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions) + + + %(AdditionalDependencies) + + %(AdditionalIncludeDirectories);..\..\inc @@ -182,6 +252,34 @@ %(AdditionalIncludeDirectories);..\inc + + + %(AdditionalOptions) -merge:.edata=.data -merge:.rdata=.data -merge:.text=.data -merge:.bss=.data -section:.data,re + %(AdditionalOptions) /ignore:4254 + kbd101.def + true + true + + + %(PreprocessorDefinitions);FE_SB;FE_IME + %(PreprocessorDefinitions);JAPAN + %(AdditionalIncludeDirectories);..\inc + + + false + false + + + %(PreprocessorDefinitions);FE_SB;FE_IME + %(PreprocessorDefinitions);JAPAN + %(AdditionalIncludeDirectories);..\inc + + + %(PreprocessorDefinitions);FE_SB;FE_IME + %(PreprocessorDefinitions);JAPAN + %(AdditionalIncludeDirectories);..\inc + + %(AdditionalOptions) -merge:.edata=.data -merge:.rdata=.data -merge:.text=.data -merge:.bss=.data -section:.data,re @@ -210,6 +308,35 @@ %(AdditionalIncludeDirectories);..\inc + + + %(AdditionalOptions) -merge:.edata=.data -merge:.rdata=.data -merge:.text=.data -merge:.bss=.data -section:.data,re + %(AdditionalOptions) /ignore:4254 + kbd101.def + true + true + + + %(PreprocessorDefinitions);FE_SB;FE_IME + %(PreprocessorDefinitions);JAPAN + %(AdditionalIncludeDirectories);..\inc + Default + + + false + false + + + %(PreprocessorDefinitions);FE_SB;FE_IME + %(PreprocessorDefinitions);JAPAN + %(AdditionalIncludeDirectories);..\inc + + + %(PreprocessorDefinitions);FE_SB;FE_IME + %(PreprocessorDefinitions);JAPAN + %(AdditionalIncludeDirectories);..\inc + + %(AdditionalOptions) -merge:.edata=.data -merge:.rdata=.data -merge:.text=.data -merge:.bss=.data -section:.data,re diff --git a/input/layout/fe_kbds/jpn/106/kbd106.vcxproj b/input/layout/fe_kbds/jpn/106/kbd106.vcxproj index 70a9e8ad..1829b2eb 100644 --- a/input/layout/fe_kbds/jpn/106/kbd106.vcxproj +++ b/input/layout/fe_kbds/jpn/106/kbd106.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ kbd106 + + kbd106 + kbd106 + + kbd106 + kbd106 @@ -104,6 +140,23 @@ %(AdditionalDependencies) + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions) + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions) + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions) + + + %(AdditionalDependencies) + + %(AdditionalIncludeDirectories);..\..\inc @@ -121,6 +174,23 @@ %(AdditionalDependencies) + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions) + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions) + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions) + + + %(AdditionalDependencies) + + %(AdditionalIncludeDirectories);..\..\inc @@ -182,6 +252,34 @@ %(AdditionalIncludeDirectories);..\inc + + + %(AdditionalOptions) -merge:.edata=.data -merge:.rdata=.data -merge:.text=.data -merge:.bss=.data -section:.data,re + %(AdditionalOptions) /ignore:4254 + kbd106.def + true + true + + + %(PreprocessorDefinitions);FE_SB;FE_IME + %(PreprocessorDefinitions);JAPAN + %(AdditionalIncludeDirectories);..\inc + + + false + false + + + %(PreprocessorDefinitions);FE_SB;FE_IME + %(PreprocessorDefinitions);JAPAN + %(AdditionalIncludeDirectories);..\inc + + + %(PreprocessorDefinitions);FE_SB;FE_IME + %(PreprocessorDefinitions);JAPAN + %(AdditionalIncludeDirectories);..\inc + + %(AdditionalOptions) -merge:.edata=.data -merge:.rdata=.data -merge:.text=.data -merge:.bss=.data -section:.data,re @@ -210,6 +308,35 @@ %(AdditionalIncludeDirectories);..\inc + + + %(AdditionalOptions) -merge:.edata=.data -merge:.rdata=.data -merge:.text=.data -merge:.bss=.data -section:.data,re + %(AdditionalOptions) /ignore:4254 + kbd106.def + true + true + + + %(PreprocessorDefinitions);FE_SB;FE_IME + %(PreprocessorDefinitions);JAPAN + %(AdditionalIncludeDirectories);..\inc + Default + + + false + false + + + %(PreprocessorDefinitions);FE_SB;FE_IME + %(PreprocessorDefinitions);JAPAN + %(AdditionalIncludeDirectories);..\inc + + + %(PreprocessorDefinitions);FE_SB;FE_IME + %(PreprocessorDefinitions);JAPAN + %(AdditionalIncludeDirectories);..\inc + + %(AdditionalOptions) -merge:.edata=.data -merge:.rdata=.data -merge:.text=.data -merge:.bss=.data -section:.data,re diff --git a/input/layout/kbd.sln b/input/layout/kbd.sln index 7eb0b1ad..a2df0953 100644 --- a/input/layout/kbd.sln +++ b/input/layout/kbd.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -31,12 +31,34 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "kbd106", "fe_kbds\jpn\106\k EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {C51EA5C9-2C11-4BA0-A8F1-E59CE1315B3C}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {C51EA5C9-2C11-4BA0-A8F1-E59CE1315B3C}.Debug|ARM64.Build.0 = Debug|ARM64 + {8CC545F3-0678-4AC8-8A25-2110DB6BF1BD}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {8CC545F3-0678-4AC8-8A25-2110DB6BF1BD}.Debug|ARM64.Build.0 = Debug|ARM64 + {F918E44C-4E53-4267-BFDB-71112122DFE2}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {F918E44C-4E53-4267-BFDB-71112122DFE2}.Debug|ARM64.Build.0 = Debug|ARM64 + {FBA54F55-C1FA-48D3-85E5-403BA6AD2469}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {FBA54F55-C1FA-48D3-85E5-403BA6AD2469}.Debug|ARM64.Build.0 = Debug|ARM64 + {07365E50-1324-40D2-832B-62DE0747FE4D}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {07365E50-1324-40D2-832B-62DE0747FE4D}.Debug|ARM64.Build.0 = Debug|ARM64 + {C51EA5C9-2C11-4BA0-A8F1-E59CE1315B3C}.Release|ARM64.ActiveCfg = Release|ARM64 + {C51EA5C9-2C11-4BA0-A8F1-E59CE1315B3C}.Release|ARM64.Build.0 = Release|ARM64 + {8CC545F3-0678-4AC8-8A25-2110DB6BF1BD}.Release|ARM64.ActiveCfg = Release|ARM64 + {8CC545F3-0678-4AC8-8A25-2110DB6BF1BD}.Release|ARM64.Build.0 = Release|ARM64 + {F918E44C-4E53-4267-BFDB-71112122DFE2}.Release|ARM64.ActiveCfg = Release|ARM64 + {F918E44C-4E53-4267-BFDB-71112122DFE2}.Release|ARM64.Build.0 = Release|ARM64 + {FBA54F55-C1FA-48D3-85E5-403BA6AD2469}.Release|ARM64.ActiveCfg = Release|ARM64 + {FBA54F55-C1FA-48D3-85E5-403BA6AD2469}.Release|ARM64.Build.0 = Release|ARM64 + {07365E50-1324-40D2-832B-62DE0747FE4D}.Release|ARM64.ActiveCfg = Release|ARM64 + {07365E50-1324-40D2-832B-62DE0747FE4D}.Release|ARM64.Build.0 = Release|ARM64 {C51EA5C9-2C11-4BA0-A8F1-E59CE1315B3C}.Debug|Win32.ActiveCfg = Debug|Win32 {C51EA5C9-2C11-4BA0-A8F1-E59CE1315B3C}.Debug|Win32.Build.0 = Debug|Win32 {C51EA5C9-2C11-4BA0-A8F1-E59CE1315B3C}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/input/layout/kbdus/kbdus.vcxproj b/input/layout/kbdus/kbdus.vcxproj index 2c1fa83a..1557f726 100644 --- a/input/layout/kbdus/kbdus.vcxproj +++ b/input/layout/kbdus/kbdus.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ kbdus + + kbdus + kbdus + + kbdus + kbdus @@ -104,6 +140,23 @@ %(AdditionalDependencies) + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions) + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions) + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions) + + + %(AdditionalDependencies) + + %(AdditionalIncludeDirectories);..\..\inc @@ -121,6 +174,23 @@ %(AdditionalDependencies) + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions) + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions) + + + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions) + + + %(AdditionalDependencies) + + %(AdditionalIncludeDirectories);..\..\inc @@ -166,6 +236,17 @@ + + + %(AdditionalOptions) -merge:.edata=.data -merge:.rdata=.data -merge:.text=.data -merge:.bss=.data -section:.data,re + %(AdditionalOptions) /ignore:4254 + kbdus.def + + + + + + %(AdditionalOptions) -merge:.edata=.data -merge:.rdata=.data -merge:.text=.data -merge:.bss=.data -section:.data,re @@ -177,6 +258,17 @@ + + + %(AdditionalOptions) -merge:.edata=.data -merge:.rdata=.data -merge:.text=.data -merge:.bss=.data -section:.data,re + %(AdditionalOptions) /ignore:4254 + kbdus.def + + + + + + %(AdditionalOptions) -merge:.edata=.data -merge:.rdata=.data -merge:.text=.data -merge:.bss=.data -section:.data,re @@ -216,4 +308,4 @@ - \ No newline at end of file + diff --git a/input/moufiltr/moufiltr.sln b/input/moufiltr/moufiltr.sln index eaf79092..eb2b12da 100644 --- a/input/moufiltr/moufiltr.sln +++ b/input/moufiltr/moufiltr.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "moufiltr", "moufiltr.vcxpro EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {60D6C942-AC20-4C05-A2BE-54B5C966534D}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {60D6C942-AC20-4C05-A2BE-54B5C966534D}.Debug|ARM64.Build.0 = Debug|ARM64 + {60D6C942-AC20-4C05-A2BE-54B5C966534D}.Release|ARM64.ActiveCfg = Release|ARM64 + {60D6C942-AC20-4C05-A2BE-54B5C966534D}.Release|ARM64.Build.0 = Release|ARM64 {60D6C942-AC20-4C05-A2BE-54B5C966534D}.Debug|Win32.ActiveCfg = Debug|Win32 {60D6C942-AC20-4C05-A2BE-54B5C966534D}.Debug|Win32.Build.0 = Debug|Win32 {60D6C942-AC20-4C05-A2BE-54B5C966534D}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/input/moufiltr/moufiltr.vcxproj b/input/moufiltr/moufiltr.vcxproj index eae59cdb..f13782e4 100644 --- a/input/moufiltr/moufiltr.vcxproj +++ b/input/moufiltr/moufiltr.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -79,9 +109,15 @@ moufiltr + + moufiltr + moufiltr + + moufiltr + moufiltr @@ -99,6 +135,17 @@ sha256 + + + true + Level4 + + + + + sha256 + + true @@ -110,6 +157,17 @@ sha256 + + + true + Level4 + + + + + sha256 + + true @@ -149,4 +207,4 @@ - \ No newline at end of file + diff --git a/network/config/bindview/bindview.sln b/network/config/bindview/bindview.sln index 824d0444..c51ef33b 100644 --- a/network/config/bindview/bindview.sln +++ b/network/config/bindview/bindview.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "bindview", "bindview.vcxpro EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A9995567-E5EF-4A30-B294-D5930523A2B5}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {A9995567-E5EF-4A30-B294-D5930523A2B5}.Debug|ARM64.Build.0 = Debug|ARM64 + {A9995567-E5EF-4A30-B294-D5930523A2B5}.Release|ARM64.ActiveCfg = Release|ARM64 + {A9995567-E5EF-4A30-B294-D5930523A2B5}.Release|ARM64.Build.0 = Release|ARM64 {A9995567-E5EF-4A30-B294-D5930523A2B5}.Debug|Win32.ActiveCfg = Debug|Win32 {A9995567-E5EF-4A30-B294-D5930523A2B5}.Debug|Win32.Build.0 = Debug|Win32 {A9995567-E5EF-4A30-B294-D5930523A2B5}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/network/config/bindview/bindview.vcxproj b/network/config/bindview/bindview.vcxproj index a02b4401..352a1f43 100644 --- a/network/config/bindview/bindview.vcxproj +++ b/network/config/bindview/bindview.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Desktop + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Desktop + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ bindview + + bindview + bindview + + bindview + bindview @@ -112,6 +148,31 @@ %(AdditionalDependencies);ole32.lib;oleaut32.lib;comctl32.lib;comdlg32.lib;setupapi.lib;user32.lib;kernel32.lib;gdi32.lib;uuid.lib + + + %(PreprocessorDefinitions);WIN32;UNICODE;_UNICODE + true + Level4 + %(DisableSpecificWarnings);4127 + MultiThreaded + MultiThreadedDebug + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + + + + + %(PreprocessorDefinitions);WIN32;UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + + + %(PreprocessorDefinitions);WIN32;UNICODE;_UNICODE + %(AdditionalOptions) -N + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + + + %(AdditionalDependencies);ole32.lib;oleaut32.lib;comctl32.lib;comdlg32.lib;setupapi.lib;user32.lib;kernel32.lib;gdi32.lib;uuid.lib + + %(PreprocessorDefinitions);WIN32;UNICODE;_UNICODE @@ -137,6 +198,31 @@ %(AdditionalDependencies);ole32.lib;oleaut32.lib;comctl32.lib;comdlg32.lib;setupapi.lib;user32.lib;kernel32.lib;gdi32.lib;uuid.lib + + + %(PreprocessorDefinitions);WIN32;UNICODE;_UNICODE + true + Level4 + %(DisableSpecificWarnings);4127 + MultiThreaded + MultiThreadedDebug + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + + + + + %(PreprocessorDefinitions);WIN32;UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + + + %(PreprocessorDefinitions);WIN32;UNICODE;_UNICODE + %(AdditionalOptions) -N + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + + + %(AdditionalDependencies);ole32.lib;oleaut32.lib;comctl32.lib;comdlg32.lib;setupapi.lib;user32.lib;kernel32.lib;gdi32.lib;uuid.lib + + %(PreprocessorDefinitions);WIN32;UNICODE;_UNICODE @@ -207,4 +293,4 @@ - \ No newline at end of file + diff --git a/network/modem/fakemodem/fakemodem.sln b/network/modem/fakemodem/fakemodem.sln index e956fec9..80e438b7 100644 --- a/network/modem/fakemodem/fakemodem.sln +++ b/network/modem/fakemodem/fakemodem.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fakemodem", "fakemodem.vcxp EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {318EB156-D430-4B09-8400-2B72A6A73004}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {318EB156-D430-4B09-8400-2B72A6A73004}.Debug|ARM64.Build.0 = Debug|ARM64 + {318EB156-D430-4B09-8400-2B72A6A73004}.Release|ARM64.ActiveCfg = Release|ARM64 + {318EB156-D430-4B09-8400-2B72A6A73004}.Release|ARM64.Build.0 = Release|ARM64 {318EB156-D430-4B09-8400-2B72A6A73004}.Debug|Win32.ActiveCfg = Debug|Win32 {318EB156-D430-4B09-8400-2B72A6A73004}.Debug|Win32.Build.0 = Debug|Win32 {318EB156-D430-4B09-8400-2B72A6A73004}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/network/modem/fakemodem/fakemodem.vcxproj b/network/modem/fakemodem/fakemodem.vcxproj index 029e5bdb..fe0d216a 100644 --- a/network/modem/fakemodem/fakemodem.vcxproj +++ b/network/modem/fakemodem/fakemodem.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Universal + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Universal + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -85,9 +115,15 @@ fakemodem + + fakemodem + fakemodem + + fakemodem + fakemodem @@ -110,6 +146,22 @@ %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + + + sha256 + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + + %(PreprocessorDefinitions);UNICODE;_UNICODE @@ -126,6 +178,22 @@ %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + + + sha256 + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + + %(PreprocessorDefinitions);UNICODE;_UNICODE @@ -176,4 +244,4 @@ - \ No newline at end of file + diff --git a/network/ndis/extension/base/sxbase.vcxproj b/network/ndis/extension/base/sxbase.vcxproj index aa23ad51..49a0f427 100644 --- a/network/ndis/extension/base/sxbase.vcxproj +++ b/network/ndis/extension/base/sxbase.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug x64 @@ -26,6 +34,14 @@ WindowsKernelModeDriver10.0 StaticLibrary + + Windows10 + False + Windows Driver + WDM + WindowsKernelModeDriver10.0 + StaticLibrary + Windows10 True @@ -34,6 +50,14 @@ WindowsKernelModeDriver10.0 StaticLibrary + + Windows10 + True + Windows Driver + WDM + WindowsKernelModeDriver10.0 + StaticLibrary + $(IntDir) @@ -41,16 +65,28 @@ + + + + + + sxbase + + sxbase + sxbase + + sxbase + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) @@ -75,6 +111,30 @@ sha256 + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);NDIS630=1;NDIS_WDM=1 + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);NDIS630=1;NDIS_WDM=1 + true + Level4 + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);NDIS630=1;NDIS_WDM=1 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib + + + sha256 + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) @@ -99,6 +159,30 @@ sha256 + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);NDIS630=1;NDIS_WDM=1 + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);NDIS630=1;NDIS_WDM=1 + true + Level4 + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);NDIS630=1;NDIS_WDM=1 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib + + + sha256 + + ;%(AdditionalIncludeDirectories) @@ -132,4 +216,4 @@ - \ No newline at end of file + diff --git a/network/ndis/extension/extensions.sln b/network/ndis/extension/extensions.sln index 6915713c..60c86c4d 100644 --- a/network/ndis/extension/extensions.sln +++ b/network/ndis/extension/extensions.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -25,10 +25,24 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mspassthroughext", "samples EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {116389EB-9596-42A0-9C05-66DBD2A62363}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {116389EB-9596-42A0-9C05-66DBD2A62363}.Debug|ARM64.Build.0 = Debug|ARM64 + {86E5643E-4462-4EDC-A315-07C2D260C5AD}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {86E5643E-4462-4EDC-A315-07C2D260C5AD}.Debug|ARM64.Build.0 = Debug|ARM64 + {C0A48ACA-3961-4E93-B2B4-4D27E0106A3B}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {C0A48ACA-3961-4E93-B2B4-4D27E0106A3B}.Debug|ARM64.Build.0 = Debug|ARM64 + {116389EB-9596-42A0-9C05-66DBD2A62363}.Release|ARM64.ActiveCfg = Release|ARM64 + {116389EB-9596-42A0-9C05-66DBD2A62363}.Release|ARM64.Build.0 = Release|ARM64 + {86E5643E-4462-4EDC-A315-07C2D260C5AD}.Release|ARM64.ActiveCfg = Release|ARM64 + {86E5643E-4462-4EDC-A315-07C2D260C5AD}.Release|ARM64.Build.0 = Release|ARM64 + {C0A48ACA-3961-4E93-B2B4-4D27E0106A3B}.Release|ARM64.ActiveCfg = Release|ARM64 + {C0A48ACA-3961-4E93-B2B4-4D27E0106A3B}.Release|ARM64.Build.0 = Release|ARM64 {116389EB-9596-42A0-9C05-66DBD2A62363}.Debug|x64.ActiveCfg = Debug|x64 {116389EB-9596-42A0-9C05-66DBD2A62363}.Debug|x64.Build.0 = Debug|x64 {116389EB-9596-42A0-9C05-66DBD2A62363}.Release|x64.ActiveCfg = Release|x64 diff --git a/network/ndis/extension/samples/forward/msforwardext.vcxproj b/network/ndis/extension/samples/forward/msforwardext.vcxproj index 7efe88a3..4c356ec9 100644 --- a/network/ndis/extension/samples/forward/msforwardext.vcxproj +++ b/network/ndis/extension/samples/forward/msforwardext.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug x64 @@ -26,6 +34,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -34,6 +50,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + $(IntDir) @@ -41,16 +65,28 @@ + + + + + + msforwardext + + msforwardext + msforwardext + + msforwardext + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS640=1 @@ -65,6 +101,20 @@ sha256 + + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS640=1 + + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS640=1 + + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS640=1 + + + sha256 + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS640=1 @@ -79,6 +129,20 @@ sha256 + + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS640=1 + + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS640=1 + + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS640=1 + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib;.\..\..\base\$(IntDir)\sxbase.lib @@ -94,6 +158,21 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib;.\..\..\base\$(IntDir)\sxbase.lib + false + + + true + Level4 + + + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib;.\..\..\base\$(IntDir)\sxbase.lib @@ -108,6 +187,20 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib;.\..\..\base\$(IntDir)\sxbase.lib + + + true + Level4 + + + + + sha256 + + ;%(AdditionalIncludeDirectories) @@ -136,4 +229,4 @@ - \ No newline at end of file + diff --git a/network/ndis/extension/samples/passthrough/mspassthroughext.vcxproj b/network/ndis/extension/samples/passthrough/mspassthroughext.vcxproj index f18ca5fa..94751bcf 100644 --- a/network/ndis/extension/samples/passthrough/mspassthroughext.vcxproj +++ b/network/ndis/extension/samples/passthrough/mspassthroughext.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug x64 @@ -26,6 +34,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -34,6 +50,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + $(IntDir) @@ -41,16 +65,28 @@ + + + + + + mspassthroughext + + mspassthroughext + mspassthroughext + + mspassthroughext + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1 @@ -65,6 +101,20 @@ sha256 + + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1 + + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1 + + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1 + + + sha256 + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1 @@ -79,6 +129,20 @@ sha256 + + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1 + + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1 + + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1 + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib;.\..\..\base\$(IntDir)\sxbase.lib @@ -94,6 +158,21 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib;.\..\..\base\$(IntDir)\sxbase.lib + false + + + true + Level4 + + + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib;.\..\..\base\$(IntDir)\sxbase.lib @@ -108,6 +187,20 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib;.\..\..\base\$(IntDir)\sxbase.lib + + + true + Level4 + + + + + sha256 + + ;%(AdditionalIncludeDirectories) @@ -136,4 +229,4 @@ - \ No newline at end of file + diff --git a/network/ndis/filter/filter.sln b/network/ndis/filter/filter.sln index 6b8b743f..161a0b5b 100644 --- a/network/ndis/filter/filter.sln +++ b/network/ndis/filter/filter.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ndislwf", "ndislwf.vcxproj" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {CD502925-8888-4A09-8AD0-04B80A73FBBD}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {CD502925-8888-4A09-8AD0-04B80A73FBBD}.Debug|ARM64.Build.0 = Debug|ARM64 + {CD502925-8888-4A09-8AD0-04B80A73FBBD}.Release|ARM64.ActiveCfg = Release|ARM64 + {CD502925-8888-4A09-8AD0-04B80A73FBBD}.Release|ARM64.Build.0 = Release|ARM64 {CD502925-8888-4A09-8AD0-04B80A73FBBD}.Debug|Win32.ActiveCfg = Debug|Win32 {CD502925-8888-4A09-8AD0-04B80A73FBBD}.Debug|Win32.Build.0 = Debug|Win32 {CD502925-8888-4A09-8AD0-04B80A73FBBD}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/network/ndis/filter/ndislwf.vcxproj b/network/ndis/filter/ndislwf.vcxproj index 456ac131..78b7cc05 100644 --- a/network/ndis/filter/ndislwf.vcxproj +++ b/network/ndis/filter/ndislwf.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ ndislwf + + ndislwf + ndislwf + + ndislwf + ndislwf @@ -116,6 +152,35 @@ %(PreprocessorDefinitions);NDISLWF=1 + + + true + Level4 + %(AdditionalIncludeDirectories);..;. + %(PreprocessorDefinitions);NDIS60=1 + %(PreprocessorDefinitions);NDIS620=1 + %(PreprocessorDefinitions);NDIS630=1 + %(PreprocessorDefinitions);NDIS_WDM=1 + %(PreprocessorDefinitions);NDISLWF=1 + %(DisableSpecificWarnings);4201;4214 + + + %(AdditionalIncludeDirectories);..;. + %(PreprocessorDefinitions);NDIS60=1 + %(PreprocessorDefinitions);NDIS620=1 + %(PreprocessorDefinitions);NDIS630=1 + %(PreprocessorDefinitions);NDIS_WDM=1 + %(PreprocessorDefinitions);NDISLWF=1 + + + %(AdditionalIncludeDirectories);..;. + %(PreprocessorDefinitions);NDIS60=1 + %(PreprocessorDefinitions);NDIS620=1 + %(PreprocessorDefinitions);NDIS630=1 + %(PreprocessorDefinitions);NDIS_WDM=1 + %(PreprocessorDefinitions);NDISLWF=1 + + true @@ -145,6 +210,35 @@ %(PreprocessorDefinitions);NDISLWF=1 + + + true + Level4 + %(AdditionalIncludeDirectories);..;. + %(PreprocessorDefinitions);NDIS60=1 + %(PreprocessorDefinitions);NDIS620=1 + %(PreprocessorDefinitions);NDIS630=1 + %(PreprocessorDefinitions);NDIS_WDM=1 + %(PreprocessorDefinitions);NDISLWF=1 + %(DisableSpecificWarnings);4201;4214 + + + %(AdditionalIncludeDirectories);..;. + %(PreprocessorDefinitions);NDIS60=1 + %(PreprocessorDefinitions);NDIS620=1 + %(PreprocessorDefinitions);NDIS630=1 + %(PreprocessorDefinitions);NDIS_WDM=1 + %(PreprocessorDefinitions);NDISLWF=1 + + + %(AdditionalIncludeDirectories);..;. + %(PreprocessorDefinitions);NDIS60=1 + %(PreprocessorDefinitions);NDIS620=1 + %(PreprocessorDefinitions);NDIS630=1 + %(PreprocessorDefinitions);NDIS_WDM=1 + %(PreprocessorDefinitions);NDISLWF=1 + + true @@ -216,6 +310,19 @@ SHA256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib + false + + + + + + + SHA256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib @@ -228,6 +335,18 @@ SHA256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib + + + + + + + SHA256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib @@ -292,4 +411,4 @@ - \ No newline at end of file + diff --git a/network/ndis/ndisprot/6x/ndisprot60.sln b/network/ndis/ndisprot/6x/ndisprot60.sln index 4c2e55ed..3588631d 100644 --- a/network/ndis/ndisprot/6x/ndisprot60.sln +++ b/network/ndis/ndisprot/6x/ndisprot60.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.4.33213.308 @@ -19,12 +19,26 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "prottest", "test\prottest.v EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Debug|x64 = Debug|x64 Release|Win32 = Release|Win32 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F27914B8-F3D9-4164-BF33-42BBFA19AED4}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {F27914B8-F3D9-4164-BF33-42BBFA19AED4}.Debug|ARM64.Build.0 = Debug|ARM64 + {C0748EAB-F425-488A-9F39-77D5DE2DD251}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {C0748EAB-F425-488A-9F39-77D5DE2DD251}.Debug|ARM64.Build.0 = Debug|ARM64 + {34A953AA-28CB-472E-B438-1BE26FDF1D54}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {34A953AA-28CB-472E-B438-1BE26FDF1D54}.Debug|ARM64.Build.0 = Debug|ARM64 + {F27914B8-F3D9-4164-BF33-42BBFA19AED4}.Release|ARM64.ActiveCfg = Release|ARM64 + {F27914B8-F3D9-4164-BF33-42BBFA19AED4}.Release|ARM64.Build.0 = Release|ARM64 + {C0748EAB-F425-488A-9F39-77D5DE2DD251}.Release|ARM64.ActiveCfg = Release|ARM64 + {C0748EAB-F425-488A-9F39-77D5DE2DD251}.Release|ARM64.Build.0 = Release|ARM64 + {34A953AA-28CB-472E-B438-1BE26FDF1D54}.Release|ARM64.ActiveCfg = Release|ARM64 + {34A953AA-28CB-472E-B438-1BE26FDF1D54}.Release|ARM64.Build.0 = Release|ARM64 {F27914B8-F3D9-4164-BF33-42BBFA19AED4}.Debug|Win32.ActiveCfg = Debug|Win32 {F27914B8-F3D9-4164-BF33-42BBFA19AED4}.Debug|Win32.Build.0 = Debug|Win32 {F27914B8-F3D9-4164-BF33-42BBFA19AED4}.Debug|x64.ActiveCfg = Debug|x64 diff --git a/network/ndis/ndisprot/6x/sys/60/ndisprot60.vcxproj b/network/ndis/ndisprot/6x/sys/60/ndisprot60.vcxproj index 738100d5..b31504c0 100644 --- a/network/ndis/ndisprot/6x/sys/60/ndisprot60.vcxproj +++ b/network/ndis/ndisprot/6x/sys/60/ndisprot60.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ ndisprot60 + + ndisprot60 + ndisprot60 + + ndisprot60 + ndisprot60 @@ -100,6 +136,19 @@ %(PreprocessorDefinitions);NDIS_WDM=1;NDIS60=1 + + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1 + true + Level4 + + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1 + + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1 + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS60=1 @@ -113,6 +162,19 @@ %(PreprocessorDefinitions);NDIS_WDM=1;NDIS60=1 + + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1 + true + Level4 + + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1 + + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1 + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS60=1 @@ -159,6 +221,26 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib;$(DDK_LIB_PATH)\wdmsec.lib + false + + + %(AdditionalIncludeDirectories);.. + + + %(AdditionalIncludeDirectories);.. + + + + + %(AdditionalIncludeDirectories);.. + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib;$(DDK_LIB_PATH)\wdmsec.lib @@ -178,6 +260,25 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib;$(DDK_LIB_PATH)\wdmsec.lib + + + %(AdditionalIncludeDirectories);.. + + + %(AdditionalIncludeDirectories);.. + + + + + %(AdditionalIncludeDirectories);.. + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib;$(DDK_LIB_PATH)\wdmsec.lib @@ -274,4 +375,4 @@ - \ No newline at end of file + diff --git a/network/ndis/ndisprot/6x/sys/630/ndisprot630.vcxproj b/network/ndis/ndisprot/6x/sys/630/ndisprot630.vcxproj index 67f57490..ec6f9bc2 100644 --- a/network/ndis/ndisprot/6x/sys/630/ndisprot630.vcxproj +++ b/network/ndis/ndisprot/6x/sys/630/ndisprot630.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ ndisprot630 + + ndisprot630 + ndisprot630 + + ndisprot630 + ndisprot630 @@ -100,6 +136,19 @@ %(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1 + + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1 + true + Level4 + + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1 + + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1 + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1 @@ -113,6 +162,19 @@ %(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1 + + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1 + true + Level4 + + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1 + + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1 + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1 @@ -159,6 +221,26 @@ sha256 + + + %(AdditionalIncludeDirectories);.. + + + %(AdditionalIncludeDirectories);.. + + + + + %(AdditionalIncludeDirectories);.. + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib;$(DDK_LIB_PATH)\wdmsec.lib + false + + + sha256 + + %(AdditionalIncludeDirectories);.. @@ -178,6 +260,25 @@ sha256 + + + %(AdditionalIncludeDirectories);.. + + + %(AdditionalIncludeDirectories);.. + + + + + %(AdditionalIncludeDirectories);.. + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib;$(DDK_LIB_PATH)\wdmsec.lib + + + sha256 + + %(AdditionalIncludeDirectories);.. @@ -274,4 +375,4 @@ - \ No newline at end of file + diff --git a/network/ndis/ndisprot/6x/test/prottest.vcxproj b/network/ndis/ndisprot/6x/test/prottest.vcxproj index bbe324c4..d84848a8 100644 --- a/network/ndis/ndisprot/6x/test/prottest.vcxproj +++ b/network/ndis/ndisprot/6x/test/prottest.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ prottest + + prottest + prottest + + prottest + prottest @@ -105,6 +141,24 @@ %(PreprocessorDefinitions);_WIN32WIN_ + + + %(PreprocessorDefinitions);UNICODE=1 + %(PreprocessorDefinitions);_UNICODE=1 + %(PreprocessorDefinitions);_WIN32WIN_ + Level4 + + + %(PreprocessorDefinitions);UNICODE=1 + %(PreprocessorDefinitions);_UNICODE=1 + %(PreprocessorDefinitions);_WIN32WIN_ + + + %(PreprocessorDefinitions);UNICODE=1 + %(PreprocessorDefinitions);_UNICODE=1 + %(PreprocessorDefinitions);_WIN32WIN_ + + %(PreprocessorDefinitions);UNICODE=1 @@ -123,6 +177,24 @@ %(PreprocessorDefinitions);_WIN32WIN_ + + + %(PreprocessorDefinitions);UNICODE=1 + %(PreprocessorDefinitions);_UNICODE=1 + %(PreprocessorDefinitions);_WIN32WIN_ + Level4 + + + %(PreprocessorDefinitions);UNICODE=1 + %(PreprocessorDefinitions);_UNICODE=1 + %(PreprocessorDefinitions);_WIN32WIN_ + + + %(PreprocessorDefinitions);UNICODE=1 + %(PreprocessorDefinitions);_UNICODE=1 + %(PreprocessorDefinitions);_WIN32WIN_ + + %(PreprocessorDefinitions);UNICODE=1 @@ -175,6 +247,22 @@ %(AdditionalIncludeDirectories);..\sys + + + %(AdditionalDependencies);user32.lib + + + %(AdditionalIncludeDirectories);..\sys + + + %(AdditionalIncludeDirectories);..\sys + + + + + %(AdditionalIncludeDirectories);..\sys + + %(AdditionalDependencies);user32.lib @@ -191,6 +279,22 @@ %(AdditionalIncludeDirectories);..\sys + + + %(AdditionalDependencies);user32.lib + + + %(AdditionalIncludeDirectories);..\sys + + + %(AdditionalIncludeDirectories);..\sys + + + + + %(AdditionalIncludeDirectories);..\sys + + %(AdditionalDependencies);user32.lib @@ -239,4 +343,4 @@ - \ No newline at end of file + diff --git a/network/ndis/ndisprot_kmdf/60/nprt6wdf.vcxproj b/network/ndis/ndisprot_kmdf/60/nprt6wdf.vcxproj index 81a2d78e..9d8bc5c5 100644 --- a/network/ndis/ndisprot_kmdf/60/nprt6wdf.vcxproj +++ b/network/ndis/ndisprot_kmdf/60/nprt6wdf.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -37,6 +45,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Universal + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -45,6 +61,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Universal + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -68,9 +92,15 @@ + + + + + + @@ -87,9 +117,15 @@ nprt6wdf + + nprt6wdf + nprt6wdf + + nprt6wdf + nprt6wdf @@ -107,6 +143,17 @@ %(PreprocessorDefinitions);NDIS_WDM=1;NDIS60=1 + + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1 + + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1 + + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1 + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS60=1 @@ -118,6 +165,17 @@ %(PreprocessorDefinitions);NDIS_WDM=1;NDIS60=1 + + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1 + + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1 + + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1 + + %(PreprocessorDefinitions);NDIS_WDM=1;NDIS60=1 @@ -153,6 +211,19 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib;$(DDK_LIB_PATH)\wdmsec.lib + false + + + + + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib;$(DDK_LIB_PATH)\wdmsec.lib @@ -165,6 +236,18 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib;$(DDK_LIB_PATH)\wdmsec.lib + + + + + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib;$(DDK_LIB_PATH)\wdmsec.lib @@ -247,4 +330,4 @@ - \ No newline at end of file + diff --git a/network/ndis/ndisprot_kmdf/Package/package.VcxProj b/network/ndis/ndisprot_kmdf/Package/package.VcxProj index a4c9990a..ac4027ff 100644 --- a/network/ndis/ndisprot_kmdf/Package/package.VcxProj +++ b/network/ndis/ndisprot_kmdf/Package/package.VcxProj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -51,10 +59,18 @@ Windows10 true + + Windows10 + true + Windows10 false + + Windows10 + false + @@ -94,12 +110,22 @@ sha256 + + + sha256 + + sha256 + + + sha256 + + - \ No newline at end of file + diff --git a/network/ndis/ndisprot_kmdf/ndisprot_kmdf.sln b/network/ndis/ndisprot_kmdf/ndisprot_kmdf.sln index e8eb8891..8b6a96a2 100644 --- a/network/ndis/ndisprot_kmdf/ndisprot_kmdf.sln +++ b/network/ndis/ndisprot_kmdf/ndisprot_kmdf.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -17,12 +17,26 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "nprt6wdf", "60\nprt6wdf.vcx EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {346D9284-B69E-40A5-9584-084D7BE578B2}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {346D9284-B69E-40A5-9584-084D7BE578B2}.Debug|ARM64.Build.0 = Debug|ARM64 + {E92C4A1E-396E-4CAF-A5DB-44901F07C515}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {E92C4A1E-396E-4CAF-A5DB-44901F07C515}.Debug|ARM64.Build.0 = Debug|ARM64 + {D01AA8E0-4817-4C0F-BDD7-B367F1A4B680}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {D01AA8E0-4817-4C0F-BDD7-B367F1A4B680}.Debug|ARM64.Build.0 = Debug|ARM64 + {346D9284-B69E-40A5-9584-084D7BE578B2}.Release|ARM64.ActiveCfg = Release|ARM64 + {346D9284-B69E-40A5-9584-084D7BE578B2}.Release|ARM64.Build.0 = Release|ARM64 + {E92C4A1E-396E-4CAF-A5DB-44901F07C515}.Release|ARM64.ActiveCfg = Release|ARM64 + {E92C4A1E-396E-4CAF-A5DB-44901F07C515}.Release|ARM64.Build.0 = Release|ARM64 + {D01AA8E0-4817-4C0F-BDD7-B367F1A4B680}.Release|ARM64.ActiveCfg = Release|ARM64 + {D01AA8E0-4817-4C0F-BDD7-B367F1A4B680}.Release|ARM64.Build.0 = Release|ARM64 {346D9284-B69E-40A5-9584-084D7BE578B2}.Debug|Win32.ActiveCfg = Debug|Win32 {346D9284-B69E-40A5-9584-084D7BE578B2}.Debug|Win32.Build.0 = Debug|Win32 {346D9284-B69E-40A5-9584-084D7BE578B2}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/network/ndis/ndisprot_kmdf/notifyob/ProtNotify.vcxproj b/network/ndis/ndisprot_kmdf/notifyob/ProtNotify.vcxproj index da20b3b2..68b2e992 100644 --- a/network/ndis/ndisprot_kmdf/notifyob/ProtNotify.vcxproj +++ b/network/ndis/ndisprot_kmdf/notifyob/ProtNotify.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -38,6 +46,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + False + Desktop + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 True @@ -46,6 +62,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + True + Desktop + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 False @@ -69,9 +93,15 @@ + + + + + + @@ -82,9 +112,15 @@ ProtNotify + + ProtNotify + ProtNotify + + ProtNotify + ProtNotify @@ -102,6 +138,17 @@ %(PreprocessorDefinitions);WIN32;_WINDOWS;_USRDLL;USE_STDAFX;UNICODE;_UNICODE + + + %(PreprocessorDefinitions);WIN32;_WINDOWS;_USRDLL;USE_STDAFX;UNICODE;_UNICODE + + + %(PreprocessorDefinitions);WIN32;_WINDOWS;_USRDLL;USE_STDAFX;UNICODE;_UNICODE + + + %(PreprocessorDefinitions);WIN32;_WINDOWS;_USRDLL;USE_STDAFX;UNICODE;_UNICODE + + %(PreprocessorDefinitions);WIN32;_WINDOWS;_USRDLL;USE_STDAFX;UNICODE;_UNICODE @@ -113,6 +160,17 @@ %(PreprocessorDefinitions);WIN32;_WINDOWS;_USRDLL;USE_STDAFX;UNICODE;_UNICODE + + + %(PreprocessorDefinitions);WIN32;_WINDOWS;_USRDLL;USE_STDAFX;UNICODE;_UNICODE + + + %(PreprocessorDefinitions);WIN32;_WINDOWS;_USRDLL;USE_STDAFX;UNICODE;_UNICODE + + + %(PreprocessorDefinitions);WIN32;_WINDOWS;_USRDLL;USE_STDAFX;UNICODE;_UNICODE + + %(PreprocessorDefinitions);WIN32;_WINDOWS;_USRDLL;USE_STDAFX;UNICODE;_UNICODE @@ -141,12 +199,24 @@ _DllMainCRTStartup + + + _DllMainCRTStartup@12 + _DllMainCRTStartup + + _DllMainCRTStartup@12 _DllMainCRTStartup + + + _DllMainCRTStartup@12 + _DllMainCRTStartup + + _DllMainCRTStartup@12 @@ -165,12 +235,24 @@ Sync + + + true + Sync + + true Sync + + + true + Sync + + true @@ -186,9 +268,15 @@ Static + + Static + Static + + Static + Static @@ -200,11 +288,21 @@ %(AdditionalDependencies);advapi32.lib;comctl32.lib;kernel32.lib;setupapi.lib;ole32.lib;oleaut32.lib;user32.lib;uuid.lib + + + %(AdditionalDependencies);advapi32.lib;comctl32.lib;kernel32.lib;setupapi.lib;ole32.lib;oleaut32.lib;user32.lib;uuid.lib + + %(AdditionalDependencies);advapi32.lib;comctl32.lib;kernel32.lib;setupapi.lib;ole32.lib;oleaut32.lib;user32.lib;uuid.lib + + + %(AdditionalDependencies);advapi32.lib;comctl32.lib;kernel32.lib;setupapi.lib;ole32.lib;oleaut32.lib;user32.lib;uuid.lib + + %(AdditionalDependencies);advapi32.lib;comctl32.lib;kernel32.lib;setupapi.lib;ole32.lib;oleaut32.lib;user32.lib;uuid.lib @@ -232,6 +330,23 @@ ProtNotify.def + + + %(PreprocessorDefinitions);KMDF_VERSION_MAJOR=1;KMDF_VERSION_MINOR=11 + %(AdditionalIncludeDirectories);$(WDKContentRoot)\Include\wdf\kmdf\1.11 + + + %(PreprocessorDefinitions);KMDF_VERSION_MAJOR=1;KMDF_VERSION_MINOR=11 + %(AdditionalIncludeDirectories);$(WDKContentRoot)\Include\wdf\kmdf\1.11 + + + %(PreprocessorDefinitions);KMDF_VERSION_MAJOR=1;KMDF_VERSION_MINOR=11 + %(AdditionalIncludeDirectories);$(WDKContentRoot)\Include\wdf\kmdf\1.11 + + + ProtNotify.def + + %(PreprocessorDefinitions);KMDF_VERSION_MAJOR=1;KMDF_VERSION_MINOR=11 @@ -249,6 +364,23 @@ ProtNotify.def + + + %(PreprocessorDefinitions);KMDF_VERSION_MAJOR=1;KMDF_VERSION_MINOR=11 + %(AdditionalIncludeDirectories);$(WDKContentRoot)\Include\wdf\kmdf\1.11 + + + %(PreprocessorDefinitions);KMDF_VERSION_MAJOR=1;KMDF_VERSION_MINOR=11 + %(AdditionalIncludeDirectories);$(WDKContentRoot)\Include\wdf\kmdf\1.11 + + + %(PreprocessorDefinitions);KMDF_VERSION_MAJOR=1;KMDF_VERSION_MINOR=11 + %(AdditionalIncludeDirectories);$(WDKContentRoot)\Include\wdf\kmdf\1.11 + + + ProtNotify.def + + %(PreprocessorDefinitions);KMDF_VERSION_MAJOR=1;KMDF_VERSION_MINOR=11 @@ -318,4 +450,4 @@ - \ No newline at end of file + diff --git a/network/ndis/netvmini/6x/60/netvmini60.vcxproj b/network/ndis/netvmini/6x/60/netvmini60.vcxproj index 5e5a4ed9..ea7ba171 100644 --- a/network/ndis/netvmini/6x/60/netvmini60.vcxproj +++ b/network/ndis/netvmini/6x/60/netvmini60.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -89,9 +119,15 @@ netvmini60 + + netvmini60 + netvmini60 + + netvmini60 + netvmini60 @@ -127,6 +163,35 @@ sha256 + + + %(PreprocessorDefinitions);NDIS630_MINIPORT=1 + true + Level4 + %(PreprocessorDefinitions);NDIS_MINIPORT_DRIVER=1 + %(PreprocessorDefinitions);NDIS_WDM=1 + %(DisableSpecificWarnings);4201;4214;4127 + + + + + %(PreprocessorDefinitions);NDIS630_MINIPORT=1 + %(PreprocessorDefinitions);NDIS_MINIPORT_DRIVER=1 + %(PreprocessorDefinitions);NDIS_WDM=1 + + + %(PreprocessorDefinitions);NDIS630_MINIPORT=1 + %(PreprocessorDefinitions);NDIS_MINIPORT_DRIVER=1 + %(PreprocessorDefinitions);NDIS_WDM=1 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib + false + + + sha256 + + %(PreprocessorDefinitions);NDIS60_MINIPORT=1 @@ -155,6 +220,34 @@ sha256 + + + %(PreprocessorDefinitions);NDIS630_MINIPORT=1 + true + Level4 + %(PreprocessorDefinitions);NDIS_MINIPORT_DRIVER=1 + %(PreprocessorDefinitions);NDIS_WDM=1 + %(DisableSpecificWarnings);4201;4214;4127 + + + + + %(PreprocessorDefinitions);NDIS630_MINIPORT=1 + %(PreprocessorDefinitions);NDIS_MINIPORT_DRIVER=1 + %(PreprocessorDefinitions);NDIS_WDM=1 + + + %(PreprocessorDefinitions);NDIS630_MINIPORT=1 + %(PreprocessorDefinitions);NDIS_MINIPORT_DRIVER=1 + %(PreprocessorDefinitions);NDIS_WDM=1 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib + + + sha256 + + %(PreprocessorDefinitions);NDIS60_MINIPORT=1 @@ -227,4 +320,4 @@ - \ No newline at end of file + diff --git a/network/ndis/netvmini/6x/620/netvmini620.vcxproj b/network/ndis/netvmini/6x/620/netvmini620.vcxproj index 90d22072..19fdb18f 100644 --- a/network/ndis/netvmini/6x/620/netvmini620.vcxproj +++ b/network/ndis/netvmini/6x/620/netvmini620.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -89,9 +119,15 @@ netvmini620 + + netvmini620 + netvmini620 + + netvmini620 + netvmini620 @@ -127,6 +163,35 @@ sha256 + + + %(PreprocessorDefinitions);NDIS630_MINIPORT=1 + true + Level4 + %(PreprocessorDefinitions);NDIS_MINIPORT_DRIVER=1 + %(PreprocessorDefinitions);NDIS_WDM=1 + %(DisableSpecificWarnings);4201;4214;4127 + + + + + %(PreprocessorDefinitions);NDIS630_MINIPORT=1 + %(PreprocessorDefinitions);NDIS_MINIPORT_DRIVER=1 + %(PreprocessorDefinitions);NDIS_WDM=1 + + + %(PreprocessorDefinitions);NDIS630_MINIPORT=1 + %(PreprocessorDefinitions);NDIS_MINIPORT_DRIVER=1 + %(PreprocessorDefinitions);NDIS_WDM=1 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib + false + + + sha256 + + %(PreprocessorDefinitions);NDIS620_MINIPORT=1 @@ -155,6 +220,34 @@ sha256 + + + %(PreprocessorDefinitions);NDIS630_MINIPORT=1 + true + Level4 + %(PreprocessorDefinitions);NDIS_MINIPORT_DRIVER=1 + %(PreprocessorDefinitions);NDIS_WDM=1 + %(DisableSpecificWarnings);4201;4214;4127 + + + + + %(PreprocessorDefinitions);NDIS630_MINIPORT=1 + %(PreprocessorDefinitions);NDIS_MINIPORT_DRIVER=1 + %(PreprocessorDefinitions);NDIS_WDM=1 + + + %(PreprocessorDefinitions);NDIS630_MINIPORT=1 + %(PreprocessorDefinitions);NDIS_MINIPORT_DRIVER=1 + %(PreprocessorDefinitions);NDIS_WDM=1 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib + + + sha256 + + %(PreprocessorDefinitions);NDIS620_MINIPORT=1 @@ -227,4 +320,4 @@ - \ No newline at end of file + diff --git a/network/ndis/netvmini/6x/630/netvmini630.vcxproj b/network/ndis/netvmini/6x/630/netvmini630.vcxproj index 65b5dd78..6902d37a 100644 --- a/network/ndis/netvmini/6x/630/netvmini630.vcxproj +++ b/network/ndis/netvmini/6x/630/netvmini630.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -89,9 +119,15 @@ netvmini630 + + netvmini630 + netvmini630 + + netvmini630 + netvmini630 @@ -127,6 +163,35 @@ sha256 + + + %(PreprocessorDefinitions);NDIS630_MINIPORT=1 + true + Level4 + %(PreprocessorDefinitions);NDIS_MINIPORT_DRIVER=1 + %(PreprocessorDefinitions);NDIS_WDM=1 + %(DisableSpecificWarnings);4201;4214;4127 + + + + + %(PreprocessorDefinitions);NDIS630_MINIPORT=1 + %(PreprocessorDefinitions);NDIS_MINIPORT_DRIVER=1 + %(PreprocessorDefinitions);NDIS_WDM=1 + + + %(PreprocessorDefinitions);NDIS630_MINIPORT=1 + %(PreprocessorDefinitions);NDIS_MINIPORT_DRIVER=1 + %(PreprocessorDefinitions);NDIS_WDM=1 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib + false + + + sha256 + + %(PreprocessorDefinitions);NDIS630_MINIPORT=1 @@ -155,6 +220,34 @@ sha256 + + + %(PreprocessorDefinitions);NDIS630_MINIPORT=1 + true + Level4 + %(PreprocessorDefinitions);NDIS_MINIPORT_DRIVER=1 + %(PreprocessorDefinitions);NDIS_WDM=1 + %(DisableSpecificWarnings);4201;4214;4127 + + + + + %(PreprocessorDefinitions);NDIS630_MINIPORT=1 + %(PreprocessorDefinitions);NDIS_MINIPORT_DRIVER=1 + %(PreprocessorDefinitions);NDIS_WDM=1 + + + %(PreprocessorDefinitions);NDIS630_MINIPORT=1 + %(PreprocessorDefinitions);NDIS_MINIPORT_DRIVER=1 + %(PreprocessorDefinitions);NDIS_WDM=1 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib + + + sha256 + + %(PreprocessorDefinitions);NDIS630_MINIPORT=1 @@ -227,4 +320,4 @@ - \ No newline at end of file + diff --git a/network/ndis/netvmini/6x/680/netvmini680.vcxproj b/network/ndis/netvmini/6x/680/netvmini680.vcxproj index 01b8736e..7ffd03d4 100644 --- a/network/ndis/netvmini/6x/680/netvmini680.vcxproj +++ b/network/ndis/netvmini/6x/680/netvmini680.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -89,9 +119,15 @@ netvmini680 + + netvmini680 + netvmini680 + + netvmini680 + netvmini680 @@ -127,6 +163,35 @@ sha256 + + + %(PreprocessorDefinitions);NDIS680_MINIPORT=1 + true + Level4 + %(PreprocessorDefinitions);NDIS_MINIPORT_DRIVER=1 + %(PreprocessorDefinitions);NDIS_WDM=1 + %(DisableSpecificWarnings);4201;4214;4127 + + + + + %(PreprocessorDefinitions);NDIS680_MINIPORT=1 + %(PreprocessorDefinitions);NDIS_MINIPORT_DRIVER=1 + %(PreprocessorDefinitions);NDIS_WDM=1 + + + %(PreprocessorDefinitions);NDIS680_MINIPORT=1 + %(PreprocessorDefinitions);NDIS_MINIPORT_DRIVER=1 + %(PreprocessorDefinitions);NDIS_WDM=1 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib + false + + + sha256 + + %(PreprocessorDefinitions);NDIS680_MINIPORT=1 @@ -155,6 +220,34 @@ sha256 + + + %(PreprocessorDefinitions);NDIS680_MINIPORT=1 + true + Level4 + %(PreprocessorDefinitions);NDIS_MINIPORT_DRIVER=1 + %(PreprocessorDefinitions);NDIS_WDM=1 + %(DisableSpecificWarnings);4201;4214;4127 + + + + + %(PreprocessorDefinitions);NDIS680_MINIPORT=1 + %(PreprocessorDefinitions);NDIS_MINIPORT_DRIVER=1 + %(PreprocessorDefinitions);NDIS_WDM=1 + + + %(PreprocessorDefinitions);NDIS680_MINIPORT=1 + %(PreprocessorDefinitions);NDIS_MINIPORT_DRIVER=1 + %(PreprocessorDefinitions);NDIS_WDM=1 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib + + + sha256 + + %(PreprocessorDefinitions);NDIS680_MINIPORT=1 @@ -227,4 +320,4 @@ - \ No newline at end of file + diff --git a/network/ndis/netvmini/6x/netvmini.sln b/network/ndis/netvmini/6x/netvmini.sln index e5eaca43..8b934a70 100644 --- a/network/ndis/netvmini/6x/netvmini.sln +++ b/network/ndis/netvmini/6x/netvmini.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -21,12 +21,26 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "netvmini680", "680\netvmini EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {50458BE9-A423-44C1-AF44-21D4B5233063}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {062B87F8-6021-4BE2-B677-3AEF2456CBA0}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {7B9C33BA-F817-42B9-A355-9E54854CE9D6}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {7B9C33BA-F817-42B9-A355-9E54854CE9D6}.Debug|ARM64.Build.0 = Debug|ARM64 + {B08F62D4-7A4C-4789-A0F7-862E622839A7}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {B08F62D4-7A4C-4789-A0F7-862E622839A7}.Debug|ARM64.Build.0 = Debug|ARM64 + {50458BE9-A423-44C1-AF44-21D4B5233063}.Release|ARM64.ActiveCfg = Release|ARM64 + {062B87F8-6021-4BE2-B677-3AEF2456CBA0}.Release|ARM64.ActiveCfg = Release|ARM64 + {7B9C33BA-F817-42B9-A355-9E54854CE9D6}.Release|ARM64.ActiveCfg = Release|ARM64 + {7B9C33BA-F817-42B9-A355-9E54854CE9D6}.Release|ARM64.Build.0 = Release|ARM64 + {B08F62D4-7A4C-4789-A0F7-862E622839A7}.Release|ARM64.ActiveCfg = Release|ARM64 + {B08F62D4-7A4C-4789-A0F7-862E622839A7}.Release|ARM64.Build.0 = Release|ARM64 {50458BE9-A423-44C1-AF44-21D4B5233063}.Debug|Win32.ActiveCfg = Debug|Win32 {50458BE9-A423-44C1-AF44-21D4B5233063}.Debug|Win32.Build.0 = Debug|Win32 {50458BE9-A423-44C1-AF44-21D4B5233063}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/network/radio/RadioManagerSample/RadioManagerSample.sln b/network/radio/RadioManagerSample/RadioManagerSample.sln index 8f24bfc5..d8598254 100644 --- a/network/radio/RadioManagerSample/RadioManagerSample.sln +++ b/network/radio/RadioManagerSample/RadioManagerSample.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleRM", "cpp\SampleRM.vc EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {1138E033-EEBF-4BA3-B74F-D51443EF5EE0}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {1138E033-EEBF-4BA3-B74F-D51443EF5EE0}.Debug|ARM64.Build.0 = Debug|ARM64 + {1138E033-EEBF-4BA3-B74F-D51443EF5EE0}.Release|ARM64.ActiveCfg = Release|ARM64 + {1138E033-EEBF-4BA3-B74F-D51443EF5EE0}.Release|ARM64.Build.0 = Release|ARM64 {1138E033-EEBF-4BA3-B74F-D51443EF5EE0}.Debug|Win32.ActiveCfg = Debug|Win32 {1138E033-EEBF-4BA3-B74F-D51443EF5EE0}.Debug|Win32.Build.0 = Debug|Win32 {1138E033-EEBF-4BA3-B74F-D51443EF5EE0}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/network/radio/RadioManagerSample/cpp/SampleRM.vcxproj b/network/radio/RadioManagerSample/cpp/SampleRM.vcxproj index e6c3e212..05621298 100644 --- a/network/radio/RadioManagerSample/cpp/SampleRM.vcxproj +++ b/network/radio/RadioManagerSample/cpp/SampleRM.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ SampleRM + + SampleRM + SampleRM + + SampleRM + SampleRM @@ -92,11 +128,21 @@ Sync + + + Sync + + Sync + + + Sync + + Sync @@ -112,11 +158,21 @@ %(AdditionalOptions) -N + + + %(AdditionalOptions) -N + + %(AdditionalOptions) -N + + + %(AdditionalOptions) -N + + %(AdditionalOptions) -N @@ -130,9 +186,15 @@ Dynamic + + Dynamic + Dynamic + + Dynamic + Dynamic @@ -150,6 +212,17 @@ %(PreprocessorDefinitions);WIN32;UNICODE;_UNICODE;_NTSDK=1;WPP_USE_NTDLL_FUNCTIONS + + + %(PreprocessorDefinitions);WIN32;UNICODE;_UNICODE;_NTSDK=1;WPP_USE_NTDLL_FUNCTIONS + + + %(PreprocessorDefinitions);WIN32;UNICODE;_UNICODE;_NTSDK=1;WPP_USE_NTDLL_FUNCTIONS + + + %(PreprocessorDefinitions);WIN32;UNICODE;_UNICODE;_NTSDK=1;WPP_USE_NTDLL_FUNCTIONS + + %(PreprocessorDefinitions);WIN32;UNICODE;_UNICODE;_NTSDK=1;WPP_USE_NTDLL_FUNCTIONS @@ -161,6 +234,17 @@ %(PreprocessorDefinitions);WIN32;UNICODE;_UNICODE;_NTSDK=1;WPP_USE_NTDLL_FUNCTIONS + + + %(PreprocessorDefinitions);WIN32;UNICODE;_UNICODE;_NTSDK=1;WPP_USE_NTDLL_FUNCTIONS + + + %(PreprocessorDefinitions);WIN32;UNICODE;_UNICODE;_NTSDK=1;WPP_USE_NTDLL_FUNCTIONS + + + %(PreprocessorDefinitions);WIN32;UNICODE;_UNICODE;_NTSDK=1;WPP_USE_NTDLL_FUNCTIONS + + %(PreprocessorDefinitions);WIN32;UNICODE;_UNICODE;_NTSDK=1;WPP_USE_NTDLL_FUNCTIONS @@ -189,12 +273,24 @@ _DllMainCRTStartup + + + _DllMainCRTStartup@12 + _DllMainCRTStartup + + _DllMainCRTStartup@12 _DllMainCRTStartup + + + _DllMainCRTStartup@12 + _DllMainCRTStartup + + _DllMainCRTStartup@12 @@ -224,6 +320,23 @@ %(AdditionalIncludeDirectories) + + + true + Level4 + %(AdditionalIncludeDirectories) + + + %(AdditionalDependencies);ntdll.lib;Kernel32.lib;advapi32.lib;oleaut32.lib;ole32.lib;uuid.lib;User32.lib + SampleRM.def + + + %(AdditionalIncludeDirectories) + + + %(AdditionalIncludeDirectories) + + true @@ -241,6 +354,23 @@ %(AdditionalIncludeDirectories) + + + true + Level4 + %(AdditionalIncludeDirectories) + + + %(AdditionalDependencies);ntdll.lib;Kernel32.lib;advapi32.lib;oleaut32.lib;ole32.lib;uuid.lib;User32.lib + SampleRM.def + + + %(AdditionalIncludeDirectories) + + + %(AdditionalIncludeDirectories) + + true @@ -322,4 +452,4 @@ - \ No newline at end of file + diff --git a/network/trans/ddproxy/ddproxy.sln b/network/trans/ddproxy/ddproxy.sln index f5f56da8..855decc7 100644 --- a/network/trans/ddproxy/ddproxy.sln +++ b/network/trans/ddproxy/ddproxy.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ddproxy", "sys\ddproxy.vcxp EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {FEABD37B-18D6-4A7B-9AD2-F5A65A904A57}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {FEABD37B-18D6-4A7B-9AD2-F5A65A904A57}.Debug|ARM64.Build.0 = Debug|ARM64 + {FEABD37B-18D6-4A7B-9AD2-F5A65A904A57}.Release|ARM64.ActiveCfg = Release|ARM64 + {FEABD37B-18D6-4A7B-9AD2-F5A65A904A57}.Release|ARM64.Build.0 = Release|ARM64 {FEABD37B-18D6-4A7B-9AD2-F5A65A904A57}.Debug|Win32.ActiveCfg = Debug|Win32 {FEABD37B-18D6-4A7B-9AD2-F5A65A904A57}.Debug|Win32.Build.0 = Debug|Win32 {FEABD37B-18D6-4A7B-9AD2-F5A65A904A57}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/network/trans/ddproxy/sys/ddproxy.vcxproj b/network/trans/ddproxy/sys/ddproxy.vcxproj index 628cc13d..7b57c92c 100644 --- a/network/trans/ddproxy/sys/ddproxy.vcxproj +++ b/network/trans/ddproxy/sys/ddproxy.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Universal + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Desktop + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -79,9 +109,15 @@ ddproxy + + ddproxy + ddproxy + + ddproxy + ddproxy @@ -110,6 +146,28 @@ sha256 + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);BINARY_COMPATIBLE=0;NT;UNICODE;_UNICODE;NDIS630;NDIS_SUPPORT_NDIS630POOL_NX_OPTIN_AUTO + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);BINARY_COMPATIBLE=0;NT;UNICODE;_UNICODE;NDIS630;NDIS_SUPPORT_NDIS630POOL_NX_OPTIN_AUTO + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);BINARY_COMPATIBLE=0;NT;UNICODE;_UNICODE;NDIS630;NDIS_SUPPORT_NDIS630POOL_NX_OPTIN_AUTO + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntoskrnl.lib;$(DDK_LIB_PATH)\ndis.lib;$(DDK_LIB_PATH)\wdmsec.lib;$(DDK_LIB_PATH)\fwpkclnt.lib;uuid.lib + + + sha256 + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) @@ -132,6 +190,28 @@ sha256 + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);BINARY_COMPATIBLE=0;NT;UNICODE;_UNICODE;NDIS630;NDIS_SUPPORT_NDIS630POOL_NX_OPTIN_AUTO + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);BINARY_COMPATIBLE=0;NT;UNICODE;_UNICODE;NDIS630;NDIS_SUPPORT_NDIS630POOL_NX_OPTIN_AUTO + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);BINARY_COMPATIBLE=0;NT;UNICODE;_UNICODE;NDIS630;NDIS_SUPPORT_NDIS630POOL_NX_OPTIN_AUTO + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntoskrnl.lib;$(DDK_LIB_PATH)\ndis.lib;$(DDK_LIB_PATH)\wdmsec.lib;$(DDK_LIB_PATH)\fwpkclnt.lib;uuid.lib + + + sha256 + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) @@ -193,4 +273,4 @@ - \ No newline at end of file + diff --git a/network/trans/inspect/inspect.sln b/network/trans/inspect/inspect.sln index 3f3ae438..2207b7fd 100644 --- a/network/trans/inspect/inspect.sln +++ b/network/trans/inspect/inspect.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.30114.105 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "inspect", "sys\inspect.vcxp EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Debug|x64 = Debug|x64 Release|Win32 = Release|Win32 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {5CF7CFC1-02B4-4938-AC5F-47D743D82E8A}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {5CF7CFC1-02B4-4938-AC5F-47D743D82E8A}.Debug|ARM64.Build.0 = Debug|ARM64 + {5CF7CFC1-02B4-4938-AC5F-47D743D82E8A}.Release|ARM64.ActiveCfg = Release|ARM64 + {5CF7CFC1-02B4-4938-AC5F-47D743D82E8A}.Release|ARM64.Build.0 = Release|ARM64 {5CF7CFC1-02B4-4938-AC5F-47D743D82E8A}.Debug|Win32.ActiveCfg = Debug|x64 {5CF7CFC1-02B4-4938-AC5F-47D743D82E8A}.Debug|Win32.Build.0 = Debug|x64 {5CF7CFC1-02B4-4938-AC5F-47D743D82E8A}.Debug|x64.ActiveCfg = Debug|x64 diff --git a/network/trans/inspect/sys/inspect.vcxproj b/network/trans/inspect/sys/inspect.vcxproj index 398e2935..a6e3a857 100644 --- a/network/trans/inspect/sys/inspect.vcxproj +++ b/network/trans/inspect/sys/inspect.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Universal + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Universal + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -82,9 +112,15 @@ inspect + + inspect + inspect + + inspect + inspect @@ -113,6 +149,28 @@ sha256 + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);BINARY_COMPATIBLE=0;NT;UNICODE;_UNICODE;NDIS630;NDIS_SUPPORT_NDIS630POOL_NX_OPTIN_AUTO + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);BINARY_COMPATIBLE=0;NT;UNICODE;_UNICODE;NDIS630;NDIS_SUPPORT_NDIS630POOL_NX_OPTIN_AUTO + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);BINARY_COMPATIBLE=0;NT;UNICODE;_UNICODE;NDIS630;NDIS_SUPPORT_NDIS630POOL_NX_OPTIN_AUTO + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib;$(DDK_LIB_PATH)\wdmsec.lib;$(DDK_LIB_PATH)\fwpkclnt.lib;uuid.lib + + + sha256 + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) @@ -135,6 +193,28 @@ sha256 + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);BINARY_COMPATIBLE=0;NT;UNICODE;_UNICODE;NDIS630;NDIS_SUPPORT_NDIS630POOL_NX_OPTIN_AUTO + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);BINARY_COMPATIBLE=0;NT;UNICODE;_UNICODE;NDIS630;NDIS_SUPPORT_NDIS630POOL_NX_OPTIN_AUTO + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);BINARY_COMPATIBLE=0;NT;UNICODE;_UNICODE;NDIS630;NDIS_SUPPORT_NDIS630POOL_NX_OPTIN_AUTO + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ndis.lib;$(DDK_LIB_PATH)\wdmsec.lib;$(DDK_LIB_PATH)\fwpkclnt.lib;uuid.lib + + + sha256 + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) @@ -196,4 +276,4 @@ - \ No newline at end of file + diff --git a/network/trans/msnmntr/exe/monitor.vcxproj b/network/trans/msnmntr/exe/monitor.vcxproj index 242045dd..67a80eac 100644 --- a/network/trans/msnmntr/exe/monitor.vcxproj +++ b/network/trans/msnmntr/exe/monitor.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Desktop + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Desktop + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ monitor + + monitor + monitor + + monitor + monitor @@ -99,6 +135,18 @@ %(AdditionalOptions) -N + + + %(PreprocessorDefinitions);WIN32 + + + %(PreprocessorDefinitions);WIN32 + + + %(PreprocessorDefinitions);WIN32 + %(AdditionalOptions) -N + + %(PreprocessorDefinitions);WIN32 @@ -111,6 +159,18 @@ %(AdditionalOptions) -N + + + %(PreprocessorDefinitions);WIN32 + + + %(PreprocessorDefinitions);WIN32 + + + %(PreprocessorDefinitions);WIN32 + %(AdditionalOptions) -N + + %(PreprocessorDefinitions);WIN32 @@ -141,12 +201,24 @@ true + + + Sync + true + + Sync true + + + Sync + true + + Sync @@ -163,10 +235,18 @@ Static NTDDI_WIN7 + + Static + NTDDI_WIN7 + Static NTDDI_WIN7 + + Static + NTDDI_WIN7 + Static NTDDI_WIN7 @@ -189,6 +269,20 @@ %(AdditionalDependencies);advapi32.lib;comctl32.lib;kernel32.lib;netapi32.lib;ole32.lib;oleaut32.lib;user32.lib;uuid.lib;ntdll.lib;kernel32.lib;setupapi.lib;rpcrt4.lib;fwpuclnt.lib + + + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(DDK_INC_PATH);..\inc + + + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(DDK_INC_PATH);..\inc + + + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(DDK_INC_PATH);..\inc + + + %(AdditionalDependencies);advapi32.lib;comctl32.lib;kernel32.lib;netapi32.lib;ole32.lib;oleaut32.lib;user32.lib;uuid.lib;ntdll.lib;kernel32.lib;setupapi.lib;rpcrt4.lib;fwpuclnt.lib + + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(DDK_INC_PATH);..\inc @@ -203,6 +297,20 @@ %(AdditionalDependencies);advapi32.lib;comctl32.lib;kernel32.lib;netapi32.lib;ole32.lib;oleaut32.lib;user32.lib;uuid.lib;ntdll.lib;kernel32.lib;setupapi.lib;rpcrt4.lib;fwpuclnt.lib + + + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(DDK_INC_PATH);..\inc + + + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(DDK_INC_PATH);..\inc + + + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(DDK_INC_PATH);..\inc + + + %(AdditionalDependencies);advapi32.lib;comctl32.lib;kernel32.lib;netapi32.lib;ole32.lib;oleaut32.lib;user32.lib;uuid.lib;ntdll.lib;kernel32.lib;setupapi.lib;rpcrt4.lib;fwpuclnt.lib + + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(DDK_INC_PATH);..\inc @@ -247,4 +355,4 @@ - \ No newline at end of file + diff --git a/network/trans/msnmntr/msnmntr.sln b/network/trans/msnmntr/msnmntr.sln index 364b4268..cc2a3d37 100644 --- a/network/trans/msnmntr/msnmntr.sln +++ b/network/trans/msnmntr/msnmntr.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -13,12 +13,22 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "msnmntr", "sys\msnmntr.vcxp EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A775BC8D-48D4-4332-B731-6135FDD0C94A}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {A775BC8D-48D4-4332-B731-6135FDD0C94A}.Debug|ARM64.Build.0 = Debug|ARM64 + {0334D910-32A8-48D1-945A-A58B9F2FAD22}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {0334D910-32A8-48D1-945A-A58B9F2FAD22}.Debug|ARM64.Build.0 = Debug|ARM64 + {A775BC8D-48D4-4332-B731-6135FDD0C94A}.Release|ARM64.ActiveCfg = Release|ARM64 + {A775BC8D-48D4-4332-B731-6135FDD0C94A}.Release|ARM64.Build.0 = Release|ARM64 + {0334D910-32A8-48D1-945A-A58B9F2FAD22}.Release|ARM64.ActiveCfg = Release|ARM64 + {0334D910-32A8-48D1-945A-A58B9F2FAD22}.Release|ARM64.Build.0 = Release|ARM64 {A775BC8D-48D4-4332-B731-6135FDD0C94A}.Debug|Win32.ActiveCfg = Debug|Win32 {A775BC8D-48D4-4332-B731-6135FDD0C94A}.Debug|Win32.Build.0 = Debug|Win32 {A775BC8D-48D4-4332-B731-6135FDD0C94A}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/network/trans/msnmntr/sys/msnmntr.vcxproj b/network/trans/msnmntr/sys/msnmntr.vcxproj index 6c3968ac..5f949703 100644 --- a/network/trans/msnmntr/sys/msnmntr.vcxproj +++ b/network/trans/msnmntr/sys/msnmntr.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Universal + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Universal + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -84,9 +114,15 @@ msnmntr + + msnmntr + msnmntr + + msnmntr + msnmntr @@ -117,6 +153,30 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + %(PreprocessorDefinitions);BINARY_COMPATIBLE=0;NT;UNICODE;_UNICODE;NDIS630;NDIS_SUPPORT_NDIS630POOL_NX_OPTIN_AUTO + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + %(PreprocessorDefinitions);BINARY_COMPATIBLE=0;NT;UNICODE;_UNICODE;NDIS630;NDIS_SUPPORT_NDIS630POOL_NX_OPTIN_AUTO + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + %(PreprocessorDefinitions);BINARY_COMPATIBLE=0;NT;UNICODE;_UNICODE;NDIS630;NDIS_SUPPORT_NDIS630POOL_NX_OPTIN_AUTO + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntoskrnl.lib;$(DDK_LIB_PATH)\wdmsec.lib;$(DDK_LIB_PATH)\fwpkclnt.lib;uuid.lib + + + sha256 + + true @@ -141,6 +201,30 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + %(PreprocessorDefinitions);BINARY_COMPATIBLE=0;NT;UNICODE;_UNICODE;NDIS630;NDIS_SUPPORT_NDIS630POOL_NX_OPTIN_AUTO + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + %(PreprocessorDefinitions);BINARY_COMPATIBLE=0;NT;UNICODE;_UNICODE;NDIS630;NDIS_SUPPORT_NDIS630POOL_NX_OPTIN_AUTO + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + %(PreprocessorDefinitions);BINARY_COMPATIBLE=0;NT;UNICODE;_UNICODE;NDIS630;NDIS_SUPPORT_NDIS630POOL_NX_OPTIN_AUTO + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntoskrnl.lib;$(DDK_LIB_PATH)\wdmsec.lib;$(DDK_LIB_PATH)\fwpkclnt.lib;uuid.lib + + + sha256 + + true @@ -202,4 +286,4 @@ - \ No newline at end of file + diff --git a/network/trans/stmedit/stmedit.sln b/network/trans/stmedit/stmedit.sln index 7ee84813..38117f6f 100644 --- a/network/trans/stmedit/stmedit.sln +++ b/network/trans/stmedit/stmedit.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.8.34511.84 @@ -7,10 +7,16 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "stmedit", "sys\stmedit.vcxp EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9CE912A5-6210-4EF8-B22D-611D13254D4C}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {9CE912A5-6210-4EF8-B22D-611D13254D4C}.Debug|ARM64.Build.0 = Debug|ARM64 + {9CE912A5-6210-4EF8-B22D-611D13254D4C}.Release|ARM64.ActiveCfg = Release|ARM64 + {9CE912A5-6210-4EF8-B22D-611D13254D4C}.Release|ARM64.Build.0 = Release|ARM64 {9CE912A5-6210-4EF8-B22D-611D13254D4C}.Debug|x64.ActiveCfg = Debug|x64 {9CE912A5-6210-4EF8-B22D-611D13254D4C}.Debug|x64.Build.0 = Debug|x64 {9CE912A5-6210-4EF8-B22D-611D13254D4C}.Debug|x64.Deploy.0 = Debug|x64 diff --git a/network/trans/stmedit/sys/stmedit.vcxproj b/network/trans/stmedit/sys/stmedit.vcxproj index 1c71ec9b..8015ad17 100644 --- a/network/trans/stmedit/sys/stmedit.vcxproj +++ b/network/trans/stmedit/sys/stmedit.vcxproj @@ -1,6 +1,14 @@ + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Universal + KMDF + WindowsKernelModeDriver10.0 + Driver + @@ -46,6 +62,17 @@ Driver false + + + + True + + + KMDF + WindowsKernelModeDriver10.0 + Driver + false + Windows10 False @@ -69,9 +96,15 @@ + + + + + + @@ -82,9 +115,15 @@ stmedit + + stmedit + stmedit + + stmedit + stmedit @@ -117,6 +156,32 @@ sha256 + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);BINARY_COMPATIBLE=0;NT;UNICODE;_UNICODE;NDIS630;POOL_NX_OPTIN_AUTO + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);BINARY_COMPATIBLE=0;NT;UNICODE;_UNICODE;NDIS630;POOL_NX_OPTIN_AUTO + + + true + DoTraceLevelMessage(LEVEL,FLAGS,MSG,...) + StmEdit + Trace.h + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);BINARY_COMPATIBLE=0;NT;UNICODE;_UNICODE;NDIS630;POOL_NX_OPTIN_AUTO + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntoskrnl.lib;$(DDK_LIB_PATH)\ndis.lib;$(DDK_LIB_PATH)\wdmsec.lib;$(DDK_LIB_PATH)\fwpkclnt.lib;uuid.lib + + + sha256 + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) @@ -143,6 +208,32 @@ sha256 + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);BINARY_COMPATIBLE=0;NT;UNICODE;_UNICODE;NDIS630;POOL_NX_OPTIN_AUTO + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);BINARY_COMPATIBLE=0;NT;UNICODE;_UNICODE;NDIS630;POOL_NX_OPTIN_AUTO + + + true + DoTraceLevelMessage(LEVEL,FLAGS,MSG,...) + StmEdit + Trace.h + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + %(PreprocessorDefinitions);BINARY_COMPATIBLE=0;NT;UNICODE;_UNICODE;NDIS630;POOL_NX_OPTIN_AUTO + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntoskrnl.lib;$(DDK_LIB_PATH)\ndis.lib;$(DDK_LIB_PATH)\wdmsec.lib;$(DDK_LIB_PATH)\fwpkclnt.lib;uuid.lib + + + sha256 + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) @@ -214,4 +305,4 @@ - \ No newline at end of file + diff --git a/network/wsk/echosrv/echosrv.sln b/network/wsk/echosrv/echosrv.sln index d2a3e511..dd8942d2 100644 --- a/network/wsk/echosrv/echosrv.sln +++ b/network/wsk/echosrv/echosrv.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "echosrv", "echosrv.vcxproj" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9436F43A-8E46-4A73-ADB4-2B3F332A9DF4}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {9436F43A-8E46-4A73-ADB4-2B3F332A9DF4}.Debug|ARM64.Build.0 = Debug|ARM64 + {9436F43A-8E46-4A73-ADB4-2B3F332A9DF4}.Release|ARM64.ActiveCfg = Release|ARM64 + {9436F43A-8E46-4A73-ADB4-2B3F332A9DF4}.Release|ARM64.Build.0 = Release|ARM64 {9436F43A-8E46-4A73-ADB4-2B3F332A9DF4}.Debug|Win32.ActiveCfg = Debug|Win32 {9436F43A-8E46-4A73-ADB4-2B3F332A9DF4}.Debug|Win32.Build.0 = Debug|Win32 {9436F43A-8E46-4A73-ADB4-2B3F332A9DF4}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/network/wsk/echosrv/echosrv.vcxproj b/network/wsk/echosrv/echosrv.vcxproj index 168be9f4..60138114 100644 --- a/network/wsk/echosrv/echosrv.vcxproj +++ b/network/wsk/echosrv/echosrv.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -87,9 +117,15 @@ echosrv + + echosrv + echosrv + + echosrv + echosrv @@ -117,6 +153,27 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories) + + + + + %(AdditionalIncludeDirectories) + + + %(AdditionalIncludeDirectories) + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\netio.lib;uuid.lib + + + sha256 + + true @@ -138,6 +195,27 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories) + + + + + %(AdditionalIncludeDirectories) + + + %(AdditionalIncludeDirectories) + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\netio.lib;uuid.lib + + + sha256 + + true @@ -196,4 +274,4 @@ - \ No newline at end of file + diff --git a/nfp/net/exe/NetNfpControl.vcxproj b/nfp/net/exe/NetNfpControl.vcxproj index 6dbe997c..b834cb0b 100644 --- a/nfp/net/exe/NetNfpControl.vcxproj +++ b/nfp/net/exe/NetNfpControl.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ NetNfpControl + + NetNfpControl + NetNfpControl + + NetNfpControl + NetNfpControl @@ -93,12 +129,24 @@ MultiThreadedDebug + + + MultiThreaded + MultiThreadedDebug + + MultiThreaded MultiThreadedDebug + + + MultiThreaded + MultiThreadedDebug + + MultiThreaded @@ -114,9 +162,15 @@ Dynamic + + Dynamic + Dynamic + + Dynamic + Dynamic @@ -134,6 +188,17 @@ %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + + %(PreprocessorDefinitions);UNICODE;_UNICODE @@ -145,6 +210,17 @@ %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + + %(PreprocessorDefinitions);UNICODE;_UNICODE @@ -183,6 +259,22 @@ %(AdditionalDependencies);kernel32.lib;uuid.lib;user32.lib;ntdll.lib;user32.lib;oleacc.lib;SetupAPI.lib;Ws2_32.lib;mswsock.lib + + + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);..\inc;..\driver + + + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);..\inc;..\driver + + + + + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);..\inc;..\driver + + + %(AdditionalDependencies);kernel32.lib;uuid.lib;user32.lib;ntdll.lib;user32.lib;oleacc.lib;SetupAPI.lib;Ws2_32.lib;mswsock.lib + + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);..\inc;..\driver @@ -199,6 +291,22 @@ %(AdditionalDependencies);kernel32.lib;uuid.lib;user32.lib;ntdll.lib;user32.lib;oleacc.lib;SetupAPI.lib;Ws2_32.lib;mswsock.lib + + + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);..\inc;..\driver + + + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);..\inc;..\driver + + + + + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);..\inc;..\driver + + + %(AdditionalDependencies);kernel32.lib;uuid.lib;user32.lib;ntdll.lib;user32.lib;oleacc.lib;SetupAPI.lib;Ws2_32.lib;mswsock.lib + + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);..\inc;..\driver @@ -258,4 +366,4 @@ - \ No newline at end of file + diff --git a/nfp/net/netnfp.sln b/nfp/net/netnfp.sln index dff6f191..cb4b42c1 100644 --- a/nfp/net/netnfp.sln +++ b/nfp/net/netnfp.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -9,12 +9,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "NetNfpControl", "exe\NetNfp EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {6F9C9973-9703-40D9-AA4B-F3D4610DDDB1}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {6F9C9973-9703-40D9-AA4B-F3D4610DDDB1}.Debug|ARM64.Build.0 = Debug|ARM64 + {6F9C9973-9703-40D9-AA4B-F3D4610DDDB1}.Release|ARM64.ActiveCfg = Release|ARM64 + {6F9C9973-9703-40D9-AA4B-F3D4610DDDB1}.Release|ARM64.Build.0 = Release|ARM64 {6F9C9973-9703-40D9-AA4B-F3D4610DDDB1}.Debug|Win32.ActiveCfg = Debug|Win32 {6F9C9973-9703-40D9-AA4B-F3D4610DDDB1}.Debug|Win32.Build.0 = Debug|Win32 {6F9C9973-9703-40D9-AA4B-F3D4610DDDB1}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/pofx/PEP/acpi/sampleacpipep.vcxproj b/pofx/PEP/acpi/sampleacpipep.vcxproj index 292eb985..9e356643 100644 --- a/pofx/PEP/acpi/sampleacpipep.vcxproj +++ b/pofx/PEP/acpi/sampleacpipep.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -116,9 +146,15 @@ sampleacpipep + + sampleacpipep + sampleacpipep + + sampleacpipep + sampleacpipep @@ -138,6 +174,19 @@ %(PreprocessorDefinitions);UNICODE;_UNICODE;EVENT_TRACING + + + %(PreprocessorDefinitions);UNICODE;_UNICODE;EVENT_TRACING + true + Level4 + + + %(PreprocessorDefinitions);UNICODE;_UNICODE;EVENT_TRACING + + + %(PreprocessorDefinitions);UNICODE;_UNICODE;EVENT_TRACING + + %(PreprocessorDefinitions);UNICODE;_UNICODE;EVENT_TRACING @@ -151,6 +200,19 @@ %(PreprocessorDefinitions);UNICODE;_UNICODE;EVENT_TRACING + + + %(PreprocessorDefinitions);UNICODE;_UNICODE;EVENT_TRACING + true + Level4 + + + %(PreprocessorDefinitions);UNICODE;_UNICODE;EVENT_TRACING + + + %(PreprocessorDefinitions);UNICODE;_UNICODE;EVENT_TRACING + + %(PreprocessorDefinitions);UNICODE;_UNICODE;EVENT_TRACING @@ -196,6 +258,25 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ksguid.lib;$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\hal.lib;$(DDK_LIB_PATH)\ntoskrnl.lib;$(DDK_LIB_PATH)\wdmsec.lib;$(DDK_LIB_PATH)\wpprecorder.lib;.\..\common\$(IntDir)\pepcommon.lib + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc;$(KIT_SHARED_INC_PATH_WDK) + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ksguid.lib;$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\hal.lib;$(DDK_LIB_PATH)\ntoskrnl.lib;$(DDK_LIB_PATH)\wdmsec.lib;$(DDK_LIB_PATH)\wpprecorder.lib;.\..\common\$(IntDir)\pepcommon.lib @@ -215,6 +296,25 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ksguid.lib;$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\hal.lib;$(DDK_LIB_PATH)\ntoskrnl.lib;$(DDK_LIB_PATH)\wdmsec.lib;$(DDK_LIB_PATH)\wpprecorder.lib;.\..\common\$(IntDir)\pepcommon.lib + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc;$(KIT_SHARED_INC_PATH_WDK) + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ksguid.lib;$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\hal.lib;$(DDK_LIB_PATH)\ntoskrnl.lib;$(DDK_LIB_PATH)\wdmsec.lib;$(DDK_LIB_PATH)\wpprecorder.lib;.\..\common\$(IntDir)\pepcommon.lib @@ -275,4 +375,4 @@ - \ No newline at end of file + diff --git a/pofx/PEP/common/pepcommon.vcxproj b/pofx/PEP/common/pepcommon.vcxproj index bdfc1117..deb1b089 100644 --- a/pofx/PEP/common/pepcommon.vcxproj +++ b/pofx/PEP/common/pepcommon.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 StaticLibrary + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + StaticLibrary + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 StaticLibrary + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + StaticLibrary + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -135,9 +165,15 @@ pepcommon + + pepcommon + pepcommon + + pepcommon + pepcommon @@ -157,6 +193,19 @@ %(PreprocessorDefinitions);UNICODE;_UNICODE;EVENT_TRACING + + + %(PreprocessorDefinitions);UNICODE;_UNICODE;EVENT_TRACING + true + Level4 + + + %(PreprocessorDefinitions);UNICODE;_UNICODE;EVENT_TRACING + + + %(PreprocessorDefinitions);UNICODE;_UNICODE;EVENT_TRACING + + %(PreprocessorDefinitions);UNICODE;_UNICODE;EVENT_TRACING @@ -170,6 +219,19 @@ %(PreprocessorDefinitions);UNICODE;_UNICODE;EVENT_TRACING + + + %(PreprocessorDefinitions);UNICODE;_UNICODE;EVENT_TRACING + true + Level4 + + + %(PreprocessorDefinitions);UNICODE;_UNICODE;EVENT_TRACING + + + %(PreprocessorDefinitions);UNICODE;_UNICODE;EVENT_TRACING + + %(PreprocessorDefinitions);UNICODE;_UNICODE;EVENT_TRACING @@ -215,6 +277,25 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ksguid.lib;$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\hal.lib;$(DDK_LIB_PATH)\ntoskrnl.lib;$(DDK_LIB_PATH)\wdmsec.lib;$(DDK_LIB_PATH)\wpprecorder.lib + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc;$(KIT_SHARED_INC_PATH_WDK) + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ksguid.lib;$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\hal.lib;$(DDK_LIB_PATH)\ntoskrnl.lib;$(DDK_LIB_PATH)\wdmsec.lib;$(DDK_LIB_PATH)\wpprecorder.lib @@ -234,6 +315,25 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ksguid.lib;$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\hal.lib;$(DDK_LIB_PATH)\ntoskrnl.lib;$(DDK_LIB_PATH)\wdmsec.lib;$(DDK_LIB_PATH)\wpprecorder.lib + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc;$(KIT_SHARED_INC_PATH_WDK) + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ksguid.lib;$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\hal.lib;$(DDK_LIB_PATH)\ntoskrnl.lib;$(DDK_LIB_PATH)\wdmsec.lib;$(DDK_LIB_PATH)\wpprecorder.lib @@ -293,4 +393,4 @@ - \ No newline at end of file + diff --git a/pofx/PEP/pepsamples.sln b/pofx/PEP/pepsamples.sln index ff0d2a00..d6c784c5 100644 --- a/pofx/PEP/pepsamples.sln +++ b/pofx/PEP/pepsamples.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -16,12 +16,22 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sampleacpipep", "acpi\sampl EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {76C6ECD6-3794-441E-AFED-2997246045A1}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {76C6ECD6-3794-441E-AFED-2997246045A1}.Debug|ARM64.Build.0 = Debug|ARM64 + {B8F967C3-7E76-484C-B0A2-E55FE1A2240B}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {B8F967C3-7E76-484C-B0A2-E55FE1A2240B}.Debug|ARM64.Build.0 = Debug|ARM64 + {76C6ECD6-3794-441E-AFED-2997246045A1}.Release|ARM64.ActiveCfg = Release|ARM64 + {76C6ECD6-3794-441E-AFED-2997246045A1}.Release|ARM64.Build.0 = Release|ARM64 + {B8F967C3-7E76-484C-B0A2-E55FE1A2240B}.Release|ARM64.ActiveCfg = Release|ARM64 + {B8F967C3-7E76-484C-B0A2-E55FE1A2240B}.Release|ARM64.Build.0 = Release|ARM64 {76C6ECD6-3794-441E-AFED-2997246045A1}.Debug|Win32.ActiveCfg = Debug|Win32 {76C6ECD6-3794-441E-AFED-2997246045A1}.Debug|Win32.Build.0 = Debug|Win32 {76C6ECD6-3794-441E-AFED-2997246045A1}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/pofx/UMDF2/App/PowerFxApp.vcxproj b/pofx/UMDF2/App/PowerFxApp.vcxproj index 54e81f3e..3e53b98a 100644 --- a/pofx/UMDF2/App/PowerFxApp.vcxproj +++ b/pofx/UMDF2/App/PowerFxApp.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ PowerFxApp + + PowerFxApp + PowerFxApp + + PowerFxApp + PowerFxApp @@ -111,6 +147,30 @@ sha256 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + true + Level4 + + + + + %(PreprocessorDefinitions);_UNICODE;UNICODE + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + + + %(PreprocessorDefinitions);_UNICODE;UNICODE + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + + + %(AdditionalDependencies);mincore.lib + + + sha256 + + %(PreprocessorDefinitions);_UNICODE;UNICODE @@ -135,6 +195,30 @@ sha256 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + true + Level4 + + + + + %(PreprocessorDefinitions);_UNICODE;UNICODE + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + + + %(PreprocessorDefinitions);_UNICODE;UNICODE + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + + + %(AdditionalDependencies);mincore.lib + + + sha256 + + %(PreprocessorDefinitions);_UNICODE;UNICODE @@ -200,4 +284,4 @@ - \ No newline at end of file + diff --git a/pofx/UMDF2/Driver/SingleComp/SingleComponentSingleStateUm.vcxproj b/pofx/UMDF2/Driver/SingleComp/SingleComponentSingleStateUm.vcxproj index e00d0f12..c697ef55 100644 --- a/pofx/UMDF2/Driver/SingleComp/SingleComponentSingleStateUm.vcxproj +++ b/pofx/UMDF2/Driver/SingleComp/SingleComponentSingleStateUm.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + False + Windows Driver + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 True @@ -43,6 +59,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + True + Windows Driver + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -86,9 +116,15 @@ SingleComponentSingleStateUm + + SingleComponentSingleStateUm + SingleComponentSingleStateUm + + SingleComponentSingleStateUm + SingleComponentSingleStateUm @@ -125,6 +161,36 @@ sha256 + + + %(PreprocessorDefinitions);WPP_MACRO_USE_KM_VERSION_FOR_UM=1 + true + Level4 + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(PreprocessorDefinitions);___TARGETNAME="""SingleComponentSingleStateUm.DYNLINK""" + + + + + %(PreprocessorDefinitions);WPP_MACRO_USE_KM_VERSION_FOR_UM=1 + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(PreprocessorDefinitions);___TARGETNAME="""SingleComponentSingleStateUm.DYNLINK""" + + + %(PreprocessorDefinitions);WPP_MACRO_USE_KM_VERSION_FOR_UM=1 + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(PreprocessorDefinitions);___TARGETNAME="""SingleComponentSingleStateUm.DYNLINK""" + + + %(AdditionalDependencies);mincore.lib + + + sha256 + + %(PreprocessorDefinitions);WPP_MACRO_USE_KM_VERSION_FOR_UM=1 @@ -155,6 +221,36 @@ sha256 + + + %(PreprocessorDefinitions);WPP_MACRO_USE_KM_VERSION_FOR_UM=1 + true + Level4 + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(PreprocessorDefinitions);___TARGETNAME="""SingleComponentSingleStateUm.DYNLINK""" + + + + + %(PreprocessorDefinitions);WPP_MACRO_USE_KM_VERSION_FOR_UM=1 + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(PreprocessorDefinitions);___TARGETNAME="""SingleComponentSingleStateUm.DYNLINK""" + + + %(PreprocessorDefinitions);WPP_MACRO_USE_KM_VERSION_FOR_UM=1 + %(AdditionalIncludeDirectories);..\..\inc + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(PreprocessorDefinitions);___TARGETNAME="""SingleComponentSingleStateUm.DYNLINK""" + + + %(AdditionalDependencies);mincore.lib + + + sha256 + + %(PreprocessorDefinitions);WPP_MACRO_USE_KM_VERSION_FOR_UM=1 @@ -228,4 +324,4 @@ - \ No newline at end of file + diff --git a/pofx/UMDF2/pofx.sln b/pofx/UMDF2/pofx.sln index 857adade..5e0ece12 100644 --- a/pofx/UMDF2/pofx.sln +++ b/pofx/UMDF2/pofx.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -13,12 +13,22 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SingleComponentSingleStateU EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9212218E-EEA2-4169-BC4E-5014107F9D05}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {9212218E-EEA2-4169-BC4E-5014107F9D05}.Debug|ARM64.Build.0 = Debug|ARM64 + {151FA61D-859F-4496-B1EC-021EB9E9330C}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {151FA61D-859F-4496-B1EC-021EB9E9330C}.Debug|ARM64.Build.0 = Debug|ARM64 + {9212218E-EEA2-4169-BC4E-5014107F9D05}.Release|ARM64.ActiveCfg = Release|ARM64 + {9212218E-EEA2-4169-BC4E-5014107F9D05}.Release|ARM64.Build.0 = Release|ARM64 + {151FA61D-859F-4496-B1EC-021EB9E9330C}.Release|ARM64.ActiveCfg = Release|ARM64 + {151FA61D-859F-4496-B1EC-021EB9E9330C}.Release|ARM64.Build.0 = Release|ARM64 {9212218E-EEA2-4169-BC4E-5014107F9D05}.Debug|Win32.ActiveCfg = Debug|Win32 {9212218E-EEA2-4169-BC4E-5014107F9D05}.Debug|Win32.Build.0 = Debug|Win32 {9212218E-EEA2-4169-BC4E-5014107F9D05}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/pofx/WDF/App/PowerFxApp.vcxproj b/pofx/WDF/App/PowerFxApp.vcxproj index 89952032..6335416e 100644 --- a/pofx/WDF/App/PowerFxApp.vcxproj +++ b/pofx/WDF/App/PowerFxApp.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ PowerFxApp + + PowerFxApp + PowerFxApp + + PowerFxApp + PowerFxApp @@ -108,6 +144,27 @@ %(AdditionalDependencies);mincore.lib + + + %(PreprocessorDefinitions);_UNICODE;UNICODE + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + true + Level4 + + + + + %(PreprocessorDefinitions);_UNICODE;UNICODE + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + + + %(PreprocessorDefinitions);_UNICODE;UNICODE + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + + + %(AdditionalDependencies);mincore.lib + + %(PreprocessorDefinitions);_UNICODE;UNICODE @@ -129,6 +186,27 @@ %(AdditionalDependencies);mincore.lib + + + %(PreprocessorDefinitions);_UNICODE;UNICODE + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + true + Level4 + + + + + %(PreprocessorDefinitions);_UNICODE;UNICODE + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + + + %(PreprocessorDefinitions);_UNICODE;UNICODE + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + + + %(AdditionalDependencies);mincore.lib + + %(PreprocessorDefinitions);_UNICODE;UNICODE @@ -188,4 +266,4 @@ - \ No newline at end of file + diff --git a/pofx/WDF/Driver/MultiComp/driver/WdfMultiComp.vcxproj b/pofx/WDF/Driver/MultiComp/driver/WdfMultiComp.vcxproj index fa74c793..5cc901b7 100644 --- a/pofx/WDF/Driver/MultiComp/driver/WdfMultiComp.vcxproj +++ b/pofx/WDF/Driver/MultiComp/driver/WdfMultiComp.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -85,9 +115,15 @@ WdfMultiComp + + WdfMultiComp + WdfMultiComp + + WdfMultiComp + WdfMultiComp @@ -115,6 +151,27 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc;..\..\..\inc + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc;..\..\..\inc + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc;..\..\..\inc + + + %(AdditionalDependencies);.\..\lib\$(IntDir)\WdfPoFx.lib + + + sha256 + + true @@ -136,6 +193,27 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc;..\..\..\inc + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc;..\..\..\inc + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc;..\..\..\inc + + + %(AdditionalDependencies);.\..\lib\$(IntDir)\WdfPoFx.lib + + + sha256 + + true @@ -191,4 +269,4 @@ - \ No newline at end of file + diff --git a/pofx/WDF/Driver/MultiComp/lib/WdfPoFx.vcxproj b/pofx/WDF/Driver/MultiComp/lib/WdfPoFx.vcxproj index 6248d1b3..41ba1e6d 100644 --- a/pofx/WDF/Driver/MultiComp/lib/WdfPoFx.vcxproj +++ b/pofx/WDF/Driver/MultiComp/lib/WdfPoFx.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 StaticLibrary + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + StaticLibrary + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 StaticLibrary + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + StaticLibrary + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -85,9 +115,15 @@ WdfPoFx + + WdfPoFx + WdfPoFx + + WdfPoFx + WdfPoFx @@ -115,6 +151,27 @@ sha256 + + + true + Level4 + %(PreprocessorDefinitions);PFH_S0IDLE_SUPPORTED=1 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + + + + + %(PreprocessorDefinitions);PFH_S0IDLE_SUPPORTED=1 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + + + %(PreprocessorDefinitions);PFH_S0IDLE_SUPPORTED=1 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + + + sha256 + + true @@ -136,6 +193,27 @@ sha256 + + + true + Level4 + %(PreprocessorDefinitions);PFH_S0IDLE_SUPPORTED=1 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + + + + + %(PreprocessorDefinitions);PFH_S0IDLE_SUPPORTED=1 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + + + %(PreprocessorDefinitions);PFH_S0IDLE_SUPPORTED=1 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc + + + sha256 + + true @@ -191,4 +269,4 @@ - \ No newline at end of file + diff --git a/pofx/WDF/Driver/SingleComp/SingleComponentFStateDriver.vcxproj b/pofx/WDF/Driver/SingleComp/SingleComponentFStateDriver.vcxproj index 3fa11719..55802c62 100644 --- a/pofx/WDF/Driver/SingleComp/SingleComponentFStateDriver.vcxproj +++ b/pofx/WDF/Driver/SingleComp/SingleComponentFStateDriver.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -85,9 +115,15 @@ SingleComponentFStateDriver + + SingleComponentFStateDriver + SingleComponentFStateDriver + + SingleComponentFStateDriver + SingleComponentFStateDriver @@ -112,6 +148,24 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);..\..\inc + + + + + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalIncludeDirectories);..\..\inc + + + sha256 + + true @@ -130,6 +184,24 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);..\..\inc + + + + + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalIncludeDirectories);..\..\inc + + + sha256 + + true @@ -179,4 +251,4 @@ - \ No newline at end of file + diff --git a/pofx/WDF/pofx.sln b/pofx/WDF/pofx.sln index 090ddc67..dee3c04f 100644 --- a/pofx/WDF/pofx.sln +++ b/pofx/WDF/pofx.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 14 VisualStudioVersion = 14.0.24720.0 @@ -26,12 +26,30 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Lib", "Lib", "{A1408FD2-DC7 EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Debug|x64 = Debug|x64 Release|Win32 = Release|Win32 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9212218E-EEA2-4169-BC4E-5014107F9D05}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {9212218E-EEA2-4169-BC4E-5014107F9D05}.Debug|ARM64.Build.0 = Debug|ARM64 + {B67C0486-37ED-4B5F-BC2D-D43580212E12}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {B67C0486-37ED-4B5F-BC2D-D43580212E12}.Debug|ARM64.Build.0 = Debug|ARM64 + {2F8C935C-D957-421D-820B-B08C8E1053B0}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {2F8C935C-D957-421D-820B-B08C8E1053B0}.Debug|ARM64.Build.0 = Debug|ARM64 + {448E805C-169F-42A1-BF4D-CA3490FE5F5F}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {448E805C-169F-42A1-BF4D-CA3490FE5F5F}.Debug|ARM64.Build.0 = Debug|ARM64 + {9212218E-EEA2-4169-BC4E-5014107F9D05}.Release|ARM64.ActiveCfg = Release|ARM64 + {9212218E-EEA2-4169-BC4E-5014107F9D05}.Release|ARM64.Build.0 = Release|ARM64 + {B67C0486-37ED-4B5F-BC2D-D43580212E12}.Release|ARM64.ActiveCfg = Release|ARM64 + {B67C0486-37ED-4B5F-BC2D-D43580212E12}.Release|ARM64.Build.0 = Release|ARM64 + {2F8C935C-D957-421D-820B-B08C8E1053B0}.Release|ARM64.ActiveCfg = Release|ARM64 + {2F8C935C-D957-421D-820B-B08C8E1053B0}.Release|ARM64.Build.0 = Release|ARM64 + {448E805C-169F-42A1-BF4D-CA3490FE5F5F}.Release|ARM64.ActiveCfg = Release|ARM64 + {448E805C-169F-42A1-BF4D-CA3490FE5F5F}.Release|ARM64.Build.0 = Release|ARM64 {9212218E-EEA2-4169-BC4E-5014107F9D05}.Debug|Win32.ActiveCfg = Debug|Win32 {9212218E-EEA2-4169-BC4E-5014107F9D05}.Debug|Win32.Build.0 = Debug|Win32 {9212218E-EEA2-4169-BC4E-5014107F9D05}.Debug|x64.ActiveCfg = Debug|x64 diff --git a/pos/drivers/MagneticStripeReader/MagneticStripeReader.sln b/pos/drivers/MagneticStripeReader/MagneticStripeReader.sln index f2bb1bc0..43df095c 100644 --- a/pos/drivers/MagneticStripeReader/MagneticStripeReader.sln +++ b/pos/drivers/MagneticStripeReader/MagneticStripeReader.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,6 +7,8 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleMagneticStripeReaderD EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 @@ -15,6 +17,10 @@ Global Release|Arm = Release|Arm EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {262DC8B4-08AF-4B12-BE35-2F020EFF69AF}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {262DC8B4-08AF-4B12-BE35-2F020EFF69AF}.Debug|ARM64.Build.0 = Debug|ARM64 + {262DC8B4-08AF-4B12-BE35-2F020EFF69AF}.Release|ARM64.ActiveCfg = Release|ARM64 + {262DC8B4-08AF-4B12-BE35-2F020EFF69AF}.Release|ARM64.Build.0 = Release|ARM64 {262DC8B4-08AF-4B12-BE35-2F020EFF69AF}.Debug|Win32.ActiveCfg = Debug|Win32 {262DC8B4-08AF-4B12-BE35-2F020EFF69AF}.Debug|Win32.Build.0 = Debug|Win32 {262DC8B4-08AF-4B12-BE35-2F020EFF69AF}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/pos/drivers/MagneticStripeReader/SampleMagneticStripeReaderDrv.vcxproj b/pos/drivers/MagneticStripeReader/SampleMagneticStripeReaderDrv.vcxproj index 47204b43..a0131d64 100644 --- a/pos/drivers/MagneticStripeReader/SampleMagneticStripeReaderDrv.vcxproj +++ b/pos/drivers/MagneticStripeReader/SampleMagneticStripeReaderDrv.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -59,6 +67,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + False + Universal + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 True @@ -67,6 +83,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + True + Universal + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 False @@ -96,9 +120,15 @@ + + + + + + @@ -115,9 +145,15 @@ SampleMagneticStripeReaderDrv + + SampleMagneticStripeReaderDrv + SampleMagneticStripeReaderDrv + + SampleMagneticStripeReaderDrv + SampleMagneticStripeReaderDrv @@ -142,12 +178,24 @@ _DllMainCRTStartup + + + _DllMainCRTStartup@12 + _DllMainCRTStartup + + _DllMainCRTStartup@12 _DllMainCRTStartup + + + _DllMainCRTStartup@12 + _DllMainCRTStartup + + _DllMainCRTStartup@12 @@ -202,6 +250,20 @@ %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(WDK_UM_INC_PATH)\pos\1.1;..\inc + + + Sync + true + Level4 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(WDK_UM_INC_PATH)\pos\1.1;..\inc + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(WDK_UM_INC_PATH)\pos\1.1;..\inc + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(WDK_UM_INC_PATH)\pos\1.1;..\inc + + Sync @@ -216,6 +278,20 @@ %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(WDK_UM_INC_PATH)\pos\1.1;..\inc + + + Sync + true + Level4 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(WDK_UM_INC_PATH)\pos\1.1;..\inc + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(WDK_UM_INC_PATH)\pos\1.1;..\inc + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(WDK_UM_INC_PATH)\pos\1.1;..\inc + + Sync @@ -265,6 +341,15 @@ sha256 + + + %(AdditionalDependencies);$(WDK_UM_LIB_PATH)\pos\1.1\poscxstub.lib + exports.def + + + sha256 + + %(AdditionalDependencies);$(WDK_UM_LIB_PATH)\pos\1.1\poscxstub.lib @@ -274,6 +359,15 @@ sha256 + + + %(AdditionalDependencies);$(WDK_UM_LIB_PATH)\pos\1.1\poscxstub.lib + exports.def + + + sha256 + + %(AdditionalDependencies);$(WDK_UM_LIB_PATH)\pos\1.1\poscxstub.lib @@ -349,4 +443,4 @@ - \ No newline at end of file + diff --git a/pos/drivers/barcodescanner/BarcodeScanner.sln b/pos/drivers/barcodescanner/BarcodeScanner.sln index 84324ec7..f8664c46 100644 --- a/pos/drivers/barcodescanner/BarcodeScanner.sln +++ b/pos/drivers/barcodescanner/BarcodeScanner.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,6 +7,8 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleBarcodeScannerDrv", " EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 @@ -15,6 +17,10 @@ Global Release|Arm = Release|Arm EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {AD0547CF-66EE-4B75-A711-F91FD45E0A50}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {AD0547CF-66EE-4B75-A711-F91FD45E0A50}.Debug|ARM64.Build.0 = Debug|ARM64 + {AD0547CF-66EE-4B75-A711-F91FD45E0A50}.Release|ARM64.ActiveCfg = Release|ARM64 + {AD0547CF-66EE-4B75-A711-F91FD45E0A50}.Release|ARM64.Build.0 = Release|ARM64 {AD0547CF-66EE-4B75-A711-F91FD45E0A50}.Debug|Win32.ActiveCfg = Debug|Win32 {AD0547CF-66EE-4B75-A711-F91FD45E0A50}.Debug|Win32.Build.0 = Debug|Win32 {AD0547CF-66EE-4B75-A711-F91FD45E0A50}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/pos/drivers/barcodescanner/SampleBarcodeScannerDrv.vcxproj b/pos/drivers/barcodescanner/SampleBarcodeScannerDrv.vcxproj index ddae9ffc..0c84c2cf 100644 --- a/pos/drivers/barcodescanner/SampleBarcodeScannerDrv.vcxproj +++ b/pos/drivers/barcodescanner/SampleBarcodeScannerDrv.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -59,6 +67,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + False + Universal + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 True @@ -67,6 +83,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + True + Universal + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 False @@ -96,9 +120,15 @@ + + + + + + @@ -115,9 +145,15 @@ SampleBarcodeScannerDrv + + SampleBarcodeScannerDrv + SampleBarcodeScannerDrv + + SampleBarcodeScannerDrv + SampleBarcodeScannerDrv @@ -142,12 +178,24 @@ _DllMainCRTStartup + + + _DllMainCRTStartup@12 + _DllMainCRTStartup + + _DllMainCRTStartup@12 _DllMainCRTStartup + + + _DllMainCRTStartup@12 + _DllMainCRTStartup + + _DllMainCRTStartup@12 @@ -202,6 +250,20 @@ %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(WDK_UM_INC_PATH)\pos\1.1;..\inc + + + Sync + true + Level4 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(WDK_UM_INC_PATH)\pos\1.1;..\inc + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(WDK_UM_INC_PATH)\pos\1.1;..\inc + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(WDK_UM_INC_PATH)\pos\1.1;..\inc + + Sync @@ -216,6 +278,20 @@ %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(WDK_UM_INC_PATH)\pos\1.1;..\inc + + + Sync + true + Level4 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(WDK_UM_INC_PATH)\pos\1.1;..\inc + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(WDK_UM_INC_PATH)\pos\1.1;..\inc + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(WDK_UM_INC_PATH)\pos\1.1;..\inc + + Sync @@ -265,6 +341,15 @@ sha256 + + + %(AdditionalDependencies);$(WDK_UM_LIB_PATH)\pos\1.1\poscxstub.lib + exports.def + + + sha256 + + %(AdditionalDependencies);$(WDK_UM_LIB_PATH)\pos\1.1\poscxstub.lib @@ -274,6 +359,15 @@ sha256 + + + %(AdditionalDependencies);$(WDK_UM_LIB_PATH)\pos\1.1\poscxstub.lib + exports.def + + + sha256 + + %(AdditionalDependencies);$(WDK_UM_LIB_PATH)\pos\1.1\poscxstub.lib @@ -349,4 +443,4 @@ - \ No newline at end of file + diff --git a/prm/PrmFunc/prmfuncsample.vcxproj b/prm/PrmFunc/prmfuncsample.vcxproj index 730402d2..a159bb27 100644 --- a/prm/PrmFunc/prmfuncsample.vcxproj +++ b/prm/PrmFunc/prmfuncsample.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug x64 @@ -22,6 +30,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Desktop + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -30,6 +46,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Desktop + KMDF + WindowsKernelModeDriver10.0 + Driver + $(IntDir) @@ -37,9 +61,15 @@ + + + + + + * @@ -52,9 +82,15 @@ prmfuncsample + + prmfuncsample + prmfuncsample + + prmfuncsample + %(AdditionalDependencies);$(DDK_LIB_PATH)\ksguid.lib;$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\ntoskrnl.lib @@ -70,6 +106,21 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ksguid.lib;$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\ntoskrnl.lib + + + true + Level4 + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(KIT_SHARED_INC_PATH_WDK) + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ksguid.lib;$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\ntoskrnl.lib @@ -85,6 +136,21 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ksguid.lib;$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\ntoskrnl.lib + + + true + Level4 + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(KIT_SHARED_INC_PATH_WDK) + + + sha256 + + @@ -101,4 +167,4 @@ - \ No newline at end of file + diff --git a/prm/prmsample.sln b/prm/prmsample.sln index 9bee6614..286753fe 100644 --- a/prm/prmsample.sln +++ b/prm/prmsample.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.9.34414.90 @@ -7,10 +7,16 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "prmfuncsample", "prmfunc\pr EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A80FE9DD-C140-40F6-A3F4-55A2A55BFAD4}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {A80FE9DD-C140-40F6-A3F4-55A2A55BFAD4}.Debug|ARM64.Build.0 = Debug|ARM64 + {A80FE9DD-C140-40F6-A3F4-55A2A55BFAD4}.Release|ARM64.ActiveCfg = Release|ARM64 + {A80FE9DD-C140-40F6-A3F4-55A2A55BFAD4}.Release|ARM64.Build.0 = Release|ARM64 {A80FE9DD-C140-40F6-A3F4-55A2A55BFAD4}.Debug|x64.ActiveCfg = Debug|x64 {A80FE9DD-C140-40F6-A3F4-55A2A55BFAD4}.Debug|x64.Build.0 = Debug|x64 {A80FE9DD-C140-40F6-A3F4-55A2A55BFAD4}.Debug|x64.Deploy.0 = Debug|x64 diff --git a/sd/miniport/sdhc/inbox/sdhc.vcxproj b/sd/miniport/sdhc/inbox/sdhc.vcxproj index f44f00b0..09eb6244 100644 --- a/sd/miniport/sdhc/inbox/sdhc.vcxproj +++ b/sd/miniport/sdhc/inbox/sdhc.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Desktop + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Desktop + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -82,9 +112,15 @@ sdhc + + sdhc + sdhc + + sdhc + sdhc @@ -105,6 +141,20 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\sdport.lib;$(DDK_LIB_PATH)\ntoskrnl.lib + + + true + Level4 + + + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\sdport.lib;$(DDK_LIB_PATH)\ntoskrnl.lib @@ -119,6 +169,20 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\sdport.lib;$(DDK_LIB_PATH)\ntoskrnl.lib + + + true + Level4 + + + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\sdport.lib;$(DDK_LIB_PATH)\ntoskrnl.lib @@ -164,4 +228,4 @@ - \ No newline at end of file + diff --git a/sd/miniport/sdhc/sdhc.sln b/sd/miniport/sdhc/sdhc.sln index f3ea0bb2..2afe032e 100644 --- a/sd/miniport/sdhc/sdhc.sln +++ b/sd/miniport/sdhc/sdhc.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sdhc", "inbox\sdhc.vcxproj" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {10452736-7C4F-4206-94F9-AD634213C9C4}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {10452736-7C4F-4206-94F9-AD634213C9C4}.Debug|ARM64.Build.0 = Debug|ARM64 + {10452736-7C4F-4206-94F9-AD634213C9C4}.Release|ARM64.ActiveCfg = Release|ARM64 + {10452736-7C4F-4206-94F9-AD634213C9C4}.Release|ARM64.Build.0 = Release|ARM64 {10452736-7C4F-4206-94F9-AD634213C9C4}.Debug|Win32.ActiveCfg = Debug|Win32 {10452736-7C4F-4206-94F9-AD634213C9C4}.Debug|Win32.Build.0 = Debug|Win32 {10452736-7C4F-4206-94F9-AD634213C9C4}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/security/elam/elam.sln b/security/elam/elam.sln index 9bd375a2..b3ce7cf8 100644 --- a/security/elam/elam.sln +++ b/security/elam/elam.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "elamsample", "elamsample.vc EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D246CB84-E7A9-4CCF-A32C-EEB23910D7BD}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {D246CB84-E7A9-4CCF-A32C-EEB23910D7BD}.Debug|ARM64.Build.0 = Debug|ARM64 + {D246CB84-E7A9-4CCF-A32C-EEB23910D7BD}.Release|ARM64.ActiveCfg = Release|ARM64 + {D246CB84-E7A9-4CCF-A32C-EEB23910D7BD}.Release|ARM64.Build.0 = Release|ARM64 {D246CB84-E7A9-4CCF-A32C-EEB23910D7BD}.Debug|Win32.ActiveCfg = Debug|Win32 {D246CB84-E7A9-4CCF-A32C-EEB23910D7BD}.Debug|Win32.Build.0 = Debug|Win32 {D246CB84-E7A9-4CCF-A32C-EEB23910D7BD}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/security/elam/elamsample.vcxproj b/security/elam/elamsample.vcxproj index e4148795..0ee5dca7 100644 --- a/security/elam/elamsample.vcxproj +++ b/security/elam/elamsample.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -79,9 +109,15 @@ elamsample + + elamsample + elamsample + + elamsample + elamsample @@ -99,6 +135,17 @@ sha256 + + + true + Level4 + + + + + sha256 + + true @@ -110,6 +157,17 @@ sha256 + + + true + Level4 + + + + + sha256 + + true @@ -149,4 +207,4 @@ - \ No newline at end of file + diff --git a/sensors/ADXL345Acc/ADXL345Acc.sln b/sensors/ADXL345Acc/ADXL345Acc.sln index f3bbe543..c9c1e30c 100644 --- a/sensors/ADXL345Acc/ADXL345Acc.sln +++ b/sensors/ADXL345Acc/ADXL345Acc.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ADXL345Acc", "ADXL345Acc.vc EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {3A526221-1444-46C8-974F-E143021E03DE}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {3A526221-1444-46C8-974F-E143021E03DE}.Debug|ARM64.Build.0 = Debug|ARM64 + {3A526221-1444-46C8-974F-E143021E03DE}.Release|ARM64.ActiveCfg = Release|ARM64 + {3A526221-1444-46C8-974F-E143021E03DE}.Release|ARM64.Build.0 = Release|ARM64 {3A526221-1444-46C8-974F-E143021E03DE}.Debug|Win32.ActiveCfg = Debug|Win32 {3A526221-1444-46C8-974F-E143021E03DE}.Debug|Win32.Build.0 = Debug|Win32 {3A526221-1444-46C8-974F-E143021E03DE}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/sensors/ADXL345Acc/ADXL345Acc.vcxproj b/sensors/ADXL345Acc/ADXL345Acc.vcxproj index 1f65559e..8108ba9d 100644 --- a/sensors/ADXL345Acc/ADXL345Acc.vcxproj +++ b/sensors/ADXL345Acc/ADXL345Acc.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + False + Universal + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 True @@ -43,6 +59,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + True + Universal + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -91,9 +121,15 @@ ADXL345Acc + + ADXL345Acc + ADXL345Acc + + ADXL345Acc + ADXL345Acc @@ -125,6 +161,31 @@ sha256 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + true + Level4 + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + + + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + + + %(AdditionalDependencies);mincore.lib;propsys.lib;$(WDK_UM_LIB_PATH)\sensors\1.1\sensorscxstub.lib;sensorsutils.lib + ADXL345Acc.def + + + sha256 + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM @@ -150,6 +211,31 @@ sha256 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + true + Level4 + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + + + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1; + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1; + + + %(AdditionalDependencies);mincore.lib;propsys.lib;$(WDK_UM_LIB_PATH)\sensors\1.1\sensorscxstub.lib;sensorsutils.lib + ADXL345Acc.def + + + sha256 + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM @@ -213,4 +299,4 @@ - \ No newline at end of file + diff --git a/sensors/Activity/Activity.sln b/sensors/Activity/Activity.sln index 918419d9..f1a9698d 100644 --- a/sensors/Activity/Activity.sln +++ b/sensors/Activity/Activity.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Activity", "Activity.vcxpro EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9C41A0A9-BEE7-4410-A604-2B97BDDE6A87}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {9C41A0A9-BEE7-4410-A604-2B97BDDE6A87}.Debug|ARM64.Build.0 = Debug|ARM64 + {9C41A0A9-BEE7-4410-A604-2B97BDDE6A87}.Release|ARM64.ActiveCfg = Release|ARM64 + {9C41A0A9-BEE7-4410-A604-2B97BDDE6A87}.Release|ARM64.Build.0 = Release|ARM64 {9C41A0A9-BEE7-4410-A604-2B97BDDE6A87}.Debug|Win32.ActiveCfg = Debug|Win32 {9C41A0A9-BEE7-4410-A604-2B97BDDE6A87}.Debug|Win32.Build.0 = Debug|Win32 {9C41A0A9-BEE7-4410-A604-2B97BDDE6A87}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/sensors/Activity/Activity.vcxproj b/sensors/Activity/Activity.vcxproj index 28a11aee..20471b3c 100644 --- a/sensors/Activity/Activity.vcxproj +++ b/sensors/Activity/Activity.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + False + Universal + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 True @@ -43,6 +59,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + True + Universal + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -91,9 +121,15 @@ Activity + + Activity + Activity + + Activity + Activity @@ -125,6 +161,31 @@ sha256 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + true + Level4 + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + + + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + + + %(AdditionalDependencies);mincore.lib;propsys.lib;$(WDK_UM_LIB_PATH)\sensors\1.1\sensorscxstub.lib;sensorsutils.lib + Activity.def + + + sha256 + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM @@ -150,6 +211,31 @@ sha256 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + true + Level4 + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + + + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + + + %(AdditionalDependencies);mincore.lib;propsys.lib;$(WDK_UM_LIB_PATH)\sensors\1.1\sensorscxstub.lib;sensorsutils.lib + Activity.def + + + sha256 + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM @@ -213,4 +299,4 @@ - \ No newline at end of file + diff --git a/sensors/CustomSensors/CustomSensors.sln b/sensors/CustomSensors/CustomSensors.sln index 7a56d3a7..7b2d1aba 100644 --- a/sensors/CustomSensors/CustomSensors.sln +++ b/sensors/CustomSensors/CustomSensors.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CustomSensors", "CustomSens EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {C7936A1F-21BA-40FD-AE64-CE2515F05934}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {C7936A1F-21BA-40FD-AE64-CE2515F05934}.Debug|ARM64.Build.0 = Debug|ARM64 + {C7936A1F-21BA-40FD-AE64-CE2515F05934}.Release|ARM64.ActiveCfg = Release|ARM64 + {C7936A1F-21BA-40FD-AE64-CE2515F05934}.Release|ARM64.Build.0 = Release|ARM64 {C7936A1F-21BA-40FD-AE64-CE2515F05934}.Debug|Win32.ActiveCfg = Debug|Win32 {C7936A1F-21BA-40FD-AE64-CE2515F05934}.Debug|Win32.Build.0 = Debug|Win32 {C7936A1F-21BA-40FD-AE64-CE2515F05934}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/sensors/CustomSensors/CustomSensors.vcxproj b/sensors/CustomSensors/CustomSensors.vcxproj index 94c00d0b..4f8d8089 100644 --- a/sensors/CustomSensors/CustomSensors.vcxproj +++ b/sensors/CustomSensors/CustomSensors.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + False + Universal + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 True @@ -43,6 +59,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + True + Universal + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -91,9 +121,15 @@ CustomSensors + + CustomSensors + CustomSensors + + CustomSensors + CustomSensors @@ -125,6 +161,31 @@ sha256 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + true + Level4 + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + + + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + + + %(AdditionalDependencies);mincore.lib;propsys.lib;$(WDK_UM_LIB_PATH)\sensors\1.1\sensorscxstub.lib;sensorsutils.lib + CustomSensors.def + + + sha256 + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM @@ -150,6 +211,31 @@ sha256 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + true + Level4 + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + + + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + + + %(AdditionalDependencies);mincore.lib;propsys.lib;$(WDK_UM_LIB_PATH)\sensors\1.1\sensorscxstub.lib;sensorsutils.lib + CustomSensors.def + + + sha256 + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM @@ -213,4 +299,4 @@ - \ No newline at end of file + diff --git a/sensors/Fusion/FusionSensor.sln b/sensors/Fusion/FusionSensor.sln index 39ab0322..165e1d54 100644 --- a/sensors/Fusion/FusionSensor.sln +++ b/sensors/Fusion/FusionSensor.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FusionSensor", "FusionSenso EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {2D98FAA6-F523-420D-9F3A-480CD7C3F9CA}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {2D98FAA6-F523-420D-9F3A-480CD7C3F9CA}.Debug|ARM64.Build.0 = Debug|ARM64 + {2D98FAA6-F523-420D-9F3A-480CD7C3F9CA}.Release|ARM64.ActiveCfg = Release|ARM64 + {2D98FAA6-F523-420D-9F3A-480CD7C3F9CA}.Release|ARM64.Build.0 = Release|ARM64 {2D98FAA6-F523-420D-9F3A-480CD7C3F9CA}.Debug|Win32.ActiveCfg = Debug|Win32 {2D98FAA6-F523-420D-9F3A-480CD7C3F9CA}.Debug|Win32.Build.0 = Debug|Win32 {2D98FAA6-F523-420D-9F3A-480CD7C3F9CA}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/sensors/Fusion/FusionSensor.vcxproj b/sensors/Fusion/FusionSensor.vcxproj index 7bb21ddb..8c2c4016 100644 --- a/sensors/Fusion/FusionSensor.vcxproj +++ b/sensors/Fusion/FusionSensor.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + False + Universal + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 True @@ -43,6 +59,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + True + Universal + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -91,9 +121,15 @@ FusionSensor + + FusionSensor + FusionSensor + + FusionSensor + FusionSensor @@ -125,6 +161,30 @@ sha256 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + true + Level4 + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + Sync + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + + + %(AdditionalDependencies);mincore.lib;propsys.lib;$(WDK_UM_LIB_PATH)\sensors\1.1\sensorscxstub.lib;sensorsutils.lib + FusionSensor.def + + + sha256 + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM @@ -149,6 +209,30 @@ sha256 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + true + Level4 + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + Sync + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + + + %(AdditionalDependencies);mincore.lib;propsys.lib;$(WDK_UM_LIB_PATH)\sensors\1.1\sensorscxstub.lib;sensorsutils.lib + FusionSensor.def + + + sha256 + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM @@ -210,4 +294,4 @@ - \ No newline at end of file + diff --git a/sensors/Pedometer/Pedometer.sln b/sensors/Pedometer/Pedometer.sln index f2d1b250..48ab5789 100644 --- a/sensors/Pedometer/Pedometer.sln +++ b/sensors/Pedometer/Pedometer.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Pedometer", "Pedometer.vcxp EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {2D98FAA6-F523-420D-9F3A-480CD7C3F9CA}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {2D98FAA6-F523-420D-9F3A-480CD7C3F9CA}.Debug|ARM64.Build.0 = Debug|ARM64 + {2D98FAA6-F523-420D-9F3A-480CD7C3F9CA}.Release|ARM64.ActiveCfg = Release|ARM64 + {2D98FAA6-F523-420D-9F3A-480CD7C3F9CA}.Release|ARM64.Build.0 = Release|ARM64 {2D98FAA6-F523-420D-9F3A-480CD7C3F9CA}.Debug|Win32.ActiveCfg = Debug|Win32 {2D98FAA6-F523-420D-9F3A-480CD7C3F9CA}.Debug|Win32.Build.0 = Debug|Win32 {2D98FAA6-F523-420D-9F3A-480CD7C3F9CA}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/sensors/Pedometer/Pedometer.vcxproj b/sensors/Pedometer/Pedometer.vcxproj index da71f9bd..989d1cae 100644 --- a/sensors/Pedometer/Pedometer.vcxproj +++ b/sensors/Pedometer/Pedometer.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + False + Universal + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 True @@ -43,6 +59,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + True + Universal + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -91,9 +121,15 @@ Pedometer + + Pedometer + Pedometer + + Pedometer + Pedometer @@ -125,6 +161,31 @@ sha256 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + true + Level4 + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + + + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + + + %(AdditionalDependencies);mincore.lib;propsys.lib;$(WDK_UM_LIB_PATH)\sensors\1.1\sensorscxstub.lib;sensorsutils.lib + Pedometer.def + + + sha256 + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM @@ -150,6 +211,31 @@ sha256 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + true + Level4 + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + + + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + + + %(AdditionalDependencies);mincore.lib;propsys.lib;$(WDK_UM_LIB_PATH)\sensors\1.1\sensorscxstub.lib;sensorsutils.lib + Pedometer.def + + + sha256 + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM @@ -213,4 +299,4 @@ - \ No newline at end of file + diff --git a/sensors/SensorsComboDriver/SensorsComboDriver.sln b/sensors/SensorsComboDriver/SensorsComboDriver.sln index e6f4e500..48c1639a 100644 --- a/sensors/SensorsComboDriver/SensorsComboDriver.sln +++ b/sensors/SensorsComboDriver/SensorsComboDriver.sln @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SensorsComboDriver", "Senso EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {C3964BD1-B485-4236-8BB4-E2981B800AC1}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {C3964BD1-B485-4236-8BB4-E2981B800AC1}.Debug|ARM64.Build.0 = Debug|ARM64 + {C3964BD1-B485-4236-8BB4-E2981B800AC1}.Release|ARM64.ActiveCfg = Release|ARM64 + {C3964BD1-B485-4236-8BB4-E2981B800AC1}.Release|ARM64.Build.0 = Release|ARM64 {C3964BD1-B485-4236-8BB4-E2981B800AC1}.Debug|Win32.ActiveCfg = Debug|Win32 {C3964BD1-B485-4236-8BB4-E2981B800AC1}.Debug|Win32.Build.0 = Debug|Win32 {C3964BD1-B485-4236-8BB4-E2981B800AC1}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/sensors/SensorsComboDriver/SensorsComboDriver.vcxproj b/sensors/SensorsComboDriver/SensorsComboDriver.vcxproj index 068b9f3c..126a85cd 100644 --- a/sensors/SensorsComboDriver/SensorsComboDriver.vcxproj +++ b/sensors/SensorsComboDriver/SensorsComboDriver.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + False + Universal + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 True @@ -43,6 +59,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + True + Universal + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -91,9 +121,15 @@ SensorsComboDriver + + SensorsComboDriver + SensorsComboDriver + + SensorsComboDriver + SensorsComboDriver @@ -123,6 +159,29 @@ sha256 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + true + Level4 + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + Sync + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + + + %(AdditionalDependencies);mincore.lib;propsys.lib;$(WDK_UM_LIB_PATH)\sensors\1.1\sensorscxstub.lib;sensorsutils.lib + + + sha256 + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM @@ -146,6 +205,29 @@ sha256 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + true + Level4 + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + Sync + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(WDK_UM_INC_PATH)\sensors\1.1 + + + %(AdditionalDependencies);mincore.lib;propsys.lib;$(WDK_UM_LIB_PATH)\sensors\1.1\sensorscxstub.lib;sensorsutils.lib + + + sha256 + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM diff --git a/sensors/SimpleDeviceOrientationSensor/SimpleDeviceOrientationSensor.sln b/sensors/SimpleDeviceOrientationSensor/SimpleDeviceOrientationSensor.sln index 3dc42976..9fca17d4 100644 --- a/sensors/SimpleDeviceOrientationSensor/SimpleDeviceOrientationSensor.sln +++ b/sensors/SimpleDeviceOrientationSensor/SimpleDeviceOrientationSensor.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SimpleDeviceOrientationSens EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {EEA3DEEA-AF9A-45E3-B6AE-070677AC1032}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {EEA3DEEA-AF9A-45E3-B6AE-070677AC1032}.Debug|ARM64.Build.0 = Debug|ARM64 + {EEA3DEEA-AF9A-45E3-B6AE-070677AC1032}.Release|ARM64.ActiveCfg = Release|ARM64 + {EEA3DEEA-AF9A-45E3-B6AE-070677AC1032}.Release|ARM64.Build.0 = Release|ARM64 {EEA3DEEA-AF9A-45E3-B6AE-070677AC1032}.Debug|Win32.ActiveCfg = Debug|Win32 {EEA3DEEA-AF9A-45E3-B6AE-070677AC1032}.Debug|Win32.Build.0 = Debug|Win32 {EEA3DEEA-AF9A-45E3-B6AE-070677AC1032}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/sensors/SimpleDeviceOrientationSensor/SimpleDeviceOrientationSensor.vcxproj b/sensors/SimpleDeviceOrientationSensor/SimpleDeviceOrientationSensor.vcxproj index 56a6a1ad..ec3c3519 100644 --- a/sensors/SimpleDeviceOrientationSensor/SimpleDeviceOrientationSensor.vcxproj +++ b/sensors/SimpleDeviceOrientationSensor/SimpleDeviceOrientationSensor.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + False + Universal + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 True @@ -43,6 +59,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + True + Universal + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -91,9 +121,15 @@ SimpleDeviceOrientationSensor + + SimpleDeviceOrientationSensor + SimpleDeviceOrientationSensor + + SimpleDeviceOrientationSensor + SimpleDeviceOrientationSensor @@ -125,6 +161,31 @@ sha256 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + true + Level4 + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(SDK_INC_PATH)\ABI;$(WDK_UM_INC_PATH)\sensors\1.1 + + + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(SDK_INC_PATH)\ABI;$(WDK_UM_INC_PATH)\sensors\1.1 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(SDK_INC_PATH)\ABI;$(WDK_UM_INC_PATH)\sensors\1.1 + + + %(AdditionalDependencies);mincore.lib;propsys.lib;$(WDK_UM_LIB_PATH)\sensors\1.1\sensorscxstub.lib;sensorsutils.lib + SimpleDeviceOrientationSensor.def + + + sha256 + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM @@ -150,6 +211,31 @@ sha256 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + true + Level4 + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(SDK_INC_PATH)\ABI;$(WDK_UM_INC_PATH)\sensors\1.1 + + + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(SDK_INC_PATH)\ABI;$(WDK_UM_INC_PATH)\sensors\1.1 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(SDK_INC_PATH)\ABI;$(WDK_UM_INC_PATH)\sensors\1.1 + + + %(AdditionalDependencies);mincore.lib;propsys.lib;$(WDK_UM_LIB_PATH)\sensors\1.1\sensorscxstub.lib;sensorsutils.lib + SimpleDeviceOrientationSensor.def + + + sha256 + + %(PreprocessorDefinitions);_UNICODE;UNICODE;WPP_MACRO_USE_KM_VERSION_FOR_UM @@ -213,4 +299,4 @@ - \ No newline at end of file + diff --git a/serial/VirtualSerial2/ComPort/VirtualSerial2um.vcxproj b/serial/VirtualSerial2/ComPort/VirtualSerial2um.vcxproj index 94895192..2e45f257 100644 --- a/serial/VirtualSerial2/ComPort/VirtualSerial2um.vcxproj +++ b/serial/VirtualSerial2/ComPort/VirtualSerial2um.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + False + Universal + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 True @@ -43,6 +59,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + True + Windows Driver + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -79,9 +109,15 @@ VirtualSerial2um + + VirtualSerial2um + VirtualSerial2um + + VirtualSerial2um + VirtualSerial2um @@ -110,6 +146,28 @@ sha256 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE + %(AdditionalIncludeDirectories);$(DDK_INC_PATH)\wdm;..\..\inc + + + + + %(PreprocessorDefinitions);_UNICODE;UNICODE + %(AdditionalIncludeDirectories);$(DDK_INC_PATH)\wdm;..\..\inc + + + %(PreprocessorDefinitions);_UNICODE;UNICODE + %(AdditionalIncludeDirectories);$(DDK_INC_PATH)\wdm;..\..\inc + + + %(AdditionalDependencies);mincore.lib + + + sha256 + + %(PreprocessorDefinitions);_UNICODE;UNICODE @@ -132,6 +190,28 @@ sha256 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE + %(AdditionalIncludeDirectories);$(DDK_INC_PATH)\wdm;..\..\inc + + + + + %(PreprocessorDefinitions);_UNICODE;UNICODE + %(AdditionalIncludeDirectories);$(DDK_INC_PATH)\wdm;..\..\inc + + + %(PreprocessorDefinitions);_UNICODE;UNICODE + %(AdditionalIncludeDirectories);$(DDK_INC_PATH)\wdm;..\..\inc + + + %(AdditionalDependencies);mincore.lib + + + sha256 + + %(PreprocessorDefinitions);_UNICODE;UNICODE @@ -196,4 +276,4 @@ - \ No newline at end of file + diff --git a/serial/VirtualSerial2/FakeModem/fakemodem2um.vcxproj b/serial/VirtualSerial2/FakeModem/fakemodem2um.vcxproj index 090bc69f..284ae23b 100644 --- a/serial/VirtualSerial2/FakeModem/fakemodem2um.vcxproj +++ b/serial/VirtualSerial2/FakeModem/fakemodem2um.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + False + Windows Driver + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 True @@ -43,6 +59,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + True + Windows Driver + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -79,9 +109,15 @@ fakemodem2um + + fakemodem2um + fakemodem2um + + fakemodem2um + fakemodem2um @@ -110,6 +146,28 @@ sha256 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;_FAKE_MODEM=1 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH)\wdm;..\..\inc + + + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;_FAKE_MODEM=1 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH)\wdm;..\..\inc + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;_FAKE_MODEM=1 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH)\wdm;..\..\inc + + + %(AdditionalDependencies);mincore.lib + + + sha256 + + %(PreprocessorDefinitions);_UNICODE;UNICODE;_FAKE_MODEM=1 @@ -132,6 +190,28 @@ sha256 + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;_FAKE_MODEM=1 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH)\wdm;..\..\inc + + + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;_FAKE_MODEM=1 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH)\wdm;..\..\inc + + + %(PreprocessorDefinitions);_UNICODE;UNICODE;_FAKE_MODEM=1 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH)\wdm;..\..\inc + + + %(AdditionalDependencies);mincore.lib + + + sha256 + + %(PreprocessorDefinitions);_UNICODE;UNICODE;_FAKE_MODEM=1 @@ -196,4 +276,4 @@ - \ No newline at end of file + diff --git a/serial/VirtualSerial2/VirtualSerial.sln b/serial/VirtualSerial2/VirtualSerial.sln index 79d6c48f..da034e9f 100644 --- a/serial/VirtualSerial2/VirtualSerial.sln +++ b/serial/VirtualSerial2/VirtualSerial.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -13,12 +13,22 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fakemodem2um", "FakeModem\f EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {65A037CB-9245-442A-A791-5CFC34E97BF7}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {65A037CB-9245-442A-A791-5CFC34E97BF7}.Debug|ARM64.Build.0 = Debug|ARM64 + {CD78D78F-B132-4E6F-A11F-B62185A6152A}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {CD78D78F-B132-4E6F-A11F-B62185A6152A}.Debug|ARM64.Build.0 = Debug|ARM64 + {65A037CB-9245-442A-A791-5CFC34E97BF7}.Release|ARM64.ActiveCfg = Release|ARM64 + {65A037CB-9245-442A-A791-5CFC34E97BF7}.Release|ARM64.Build.0 = Release|ARM64 + {CD78D78F-B132-4E6F-A11F-B62185A6152A}.Release|ARM64.ActiveCfg = Release|ARM64 + {CD78D78F-B132-4E6F-A11F-B62185A6152A}.Release|ARM64.Build.0 = Release|ARM64 {65A037CB-9245-442A-A791-5CFC34E97BF7}.Debug|Win32.ActiveCfg = Debug|Win32 {65A037CB-9245-442A-A791-5CFC34E97BF7}.Debug|Win32.Build.0 = Debug|Win32 {65A037CB-9245-442A-A791-5CFC34E97BF7}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/serial/serenum/SerEnum_sample.vcxproj b/serial/serenum/SerEnum_sample.vcxproj index d189ece0..fbd3214a 100644 --- a/serial/serenum/SerEnum_sample.vcxproj +++ b/serial/serenum/SerEnum_sample.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ SerEnum_sample + + SerEnum_sample + SerEnum_sample + + SerEnum_sample + SerEnum_sample @@ -101,6 +137,20 @@ sha256 + + + %(PreprocessorDefinitions);/wd4996 + + + %(PreprocessorDefinitions);/wd4996 + + + %(PreprocessorDefinitions);/wd4996 + + + sha256 + + %(PreprocessorDefinitions);/wd4996 @@ -115,6 +165,20 @@ sha256 + + + %(PreprocessorDefinitions);/wd4996 + + + %(PreprocessorDefinitions);/wd4996 + + + %(PreprocessorDefinitions);/wd4996 + + + sha256 + + %(PreprocessorDefinitions);/wd4996 @@ -188,12 +252,24 @@ + + + + + + + + + + + + @@ -227,4 +303,4 @@ - \ No newline at end of file + diff --git a/serial/serenum/serenum.sln b/serial/serenum/serenum.sln index 0e92c0d8..e3aebaeb 100644 --- a/serial/serenum/serenum.sln +++ b/serial/serenum/serenum.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SerEnum_sample", "SerEnum_s EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {E21F5E1E-B4B0-4823-B4EF-2DC1A18CEAC5}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {E21F5E1E-B4B0-4823-B4EF-2DC1A18CEAC5}.Debug|ARM64.Build.0 = Debug|ARM64 + {E21F5E1E-B4B0-4823-B4EF-2DC1A18CEAC5}.Release|ARM64.ActiveCfg = Release|ARM64 + {E21F5E1E-B4B0-4823-B4EF-2DC1A18CEAC5}.Release|ARM64.Build.0 = Release|ARM64 {E21F5E1E-B4B0-4823-B4EF-2DC1A18CEAC5}.Debug|Win32.ActiveCfg = Debug|Win32 {E21F5E1E-B4B0-4823-B4EF-2DC1A18CEAC5}.Debug|Win32.Build.0 = Debug|Win32 {E21F5E1E-B4B0-4823-B4EF-2DC1A18CEAC5}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/serial/serial/serial.sln b/serial/serial/serial.sln index f1605d94..ee5d0223 100644 --- a/serial/serial/serial.sln +++ b/serial/serial/serial.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "wdfserial", "wdfserial.vcxp EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {E3B48B18-2E53-4ED2-A4BA-EC399764537A}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {E3B48B18-2E53-4ED2-A4BA-EC399764537A}.Debug|ARM64.Build.0 = Debug|ARM64 + {E3B48B18-2E53-4ED2-A4BA-EC399764537A}.Release|ARM64.ActiveCfg = Release|ARM64 + {E3B48B18-2E53-4ED2-A4BA-EC399764537A}.Release|ARM64.Build.0 = Release|ARM64 {E3B48B18-2E53-4ED2-A4BA-EC399764537A}.Debug|Win32.ActiveCfg = Debug|Win32 {E3B48B18-2E53-4ED2-A4BA-EC399764537A}.Debug|Win32.Build.0 = Debug|Win32 {E3B48B18-2E53-4ED2-A4BA-EC399764537A}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/serial/serial/wdfserial.vcxproj b/serial/serial/wdfserial.vcxproj index 9627ed14..ded90903 100644 --- a/serial/serial/wdfserial.vcxproj +++ b/serial/serial/wdfserial.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -276,9 +306,15 @@ wdfserial + + wdfserial + wdfserial + + wdfserial + wdfserial @@ -290,11 +326,21 @@ %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\rtlver.lib + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\rtlver.lib + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\rtlver.lib + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\rtlver.lib + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\rtlver.lib @@ -321,6 +367,22 @@ sha256 + + + %(PreprocessorDefinitions);EVENT_TRACING + + + + + %(PreprocessorDefinitions);EVENT_TRACING + + + %(PreprocessorDefinitions);EVENT_TRACING + + + sha256 + + %(PreprocessorDefinitions);EVENT_TRACING @@ -337,6 +399,22 @@ sha256 + + + %(PreprocessorDefinitions);EVENT_TRACING + + + + + %(PreprocessorDefinitions);EVENT_TRACING + + + %(PreprocessorDefinitions);EVENT_TRACING + + + sha256 + + %(PreprocessorDefinitions);EVENT_TRACING @@ -392,4 +470,4 @@ - \ No newline at end of file + diff --git a/simbatt/func/simbatt.sln b/simbatt/func/simbatt.sln index 3935e76a..91f32957 100644 --- a/simbatt/func/simbatt.sln +++ b/simbatt/func/simbatt.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "simbatt", "simbatt.vcxproj" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {49F35704-9A04-4CCF-A290-BBE79906C901}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {49F35704-9A04-4CCF-A290-BBE79906C901}.Debug|ARM64.Build.0 = Debug|ARM64 + {49F35704-9A04-4CCF-A290-BBE79906C901}.Release|ARM64.ActiveCfg = Release|ARM64 + {49F35704-9A04-4CCF-A290-BBE79906C901}.Release|ARM64.Build.0 = Release|ARM64 {49F35704-9A04-4CCF-A290-BBE79906C901}.Debug|Win32.ActiveCfg = Debug|Win32 {49F35704-9A04-4CCF-A290-BBE79906C901}.Debug|Win32.Build.0 = Debug|Win32 {49F35704-9A04-4CCF-A290-BBE79906C901}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/simbatt/func/simbatt.vcxproj b/simbatt/func/simbatt.vcxproj index 342480fb..6176c37a 100644 --- a/simbatt/func/simbatt.vcxproj +++ b/simbatt/func/simbatt.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -79,9 +109,15 @@ simbatt + + simbatt + simbatt + + simbatt + simbatt @@ -112,6 +148,30 @@ sha256 + + + true + Level4 + %(PreprocessorDefinitions);DRIVER;DEBUGPRINT + %(AdditionalIncludeDirectories);..\..\inc + + + + + %(PreprocessorDefinitions);DRIVER;DEBUGPRINT + %(AdditionalIncludeDirectories);..\..\inc + + + %(PreprocessorDefinitions);DRIVER;DEBUGPRINT + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\battc.lib + + + sha256 + + true @@ -136,6 +196,30 @@ sha256 + + + true + Level4 + %(PreprocessorDefinitions);DRIVER;DEBUGPRINT + %(AdditionalIncludeDirectories);..\..\inc + + + + + %(PreprocessorDefinitions);DRIVER;DEBUGPRINT + %(AdditionalIncludeDirectories);..\..\inc + + + %(PreprocessorDefinitions);DRIVER;DEBUGPRINT + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\battc.lib + + + sha256 + + true @@ -202,4 +286,4 @@ - \ No newline at end of file + diff --git a/smartcrd/pscr/Pscr.vcxproj b/smartcrd/pscr/Pscr.vcxproj index c9119710..2139e733 100644 --- a/smartcrd/pscr/Pscr.vcxproj +++ b/smartcrd/pscr/Pscr.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Desktop + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Desktop + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -85,9 +115,15 @@ Pscr + + Pscr + Pscr + + Pscr + Pscr @@ -113,6 +149,25 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\smclib.lib;$(DDK_LIB_PATH)\ntoskrnl.lib + + + %(AdditionalIncludeDirectories);..\inc;. + + + %(AdditionalIncludeDirectories);..\inc;. + + + + + %(AdditionalIncludeDirectories);..\inc;. + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\smclib.lib;$(DDK_LIB_PATH)\ntoskrnl.lib @@ -132,6 +187,25 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\smclib.lib;$(DDK_LIB_PATH)\ntoskrnl.lib + + + %(AdditionalIncludeDirectories);..\inc;. + + + %(AdditionalIncludeDirectories);..\inc;. + + + + + %(AdditionalIncludeDirectories);..\inc;. + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\smclib.lib;$(DDK_LIB_PATH)\ntoskrnl.lib diff --git a/smartcrd/pscr/pscr.inx b/smartcrd/pscr/pscr.inx index 93ea8f4b..ad9040fe 100644 Binary files a/smartcrd/pscr/pscr.inx and b/smartcrd/pscr/pscr.inx differ diff --git a/smartcrd/smartcrd.sln b/smartcrd/smartcrd.sln index 8c403bcf..2a566bcb 100644 --- a/smartcrd/smartcrd.sln +++ b/smartcrd/smartcrd.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Pscr", "pscr\Pscr.vcxproj", EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {BD0EF16C-0230-4D98-B6FC-FEAD0FC3398D}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {BD0EF16C-0230-4D98-B6FC-FEAD0FC3398D}.Debug|ARM64.Build.0 = Debug|ARM64 + {BD0EF16C-0230-4D98-B6FC-FEAD0FC3398D}.Release|ARM64.ActiveCfg = Release|ARM64 + {BD0EF16C-0230-4D98-B6FC-FEAD0FC3398D}.Release|ARM64.Build.0 = Release|ARM64 {BD0EF16C-0230-4D98-B6FC-FEAD0FC3398D}.Debug|Win32.ActiveCfg = Debug|Win32 {BD0EF16C-0230-4D98-B6FC-FEAD0FC3398D}.Debug|Win32.Build.0 = Debug|Win32 {BD0EF16C-0230-4D98-B6FC-FEAD0FC3398D}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/spb/SkeletonI2C/SkeletonI2C.sln b/spb/SkeletonI2C/SkeletonI2C.sln index 029fb5bb..b04f67f9 100644 --- a/spb/SkeletonI2C/SkeletonI2C.sln +++ b/spb/SkeletonI2C/SkeletonI2C.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "skeletoni2c", "skeletoni2c. EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {8C1BB5BA-283E-460F-A682-4548A1DAFA59}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {8C1BB5BA-283E-460F-A682-4548A1DAFA59}.Debug|ARM64.Build.0 = Debug|ARM64 + {8C1BB5BA-283E-460F-A682-4548A1DAFA59}.Release|ARM64.ActiveCfg = Release|ARM64 + {8C1BB5BA-283E-460F-A682-4548A1DAFA59}.Release|ARM64.Build.0 = Release|ARM64 {8C1BB5BA-283E-460F-A682-4548A1DAFA59}.Debug|Win32.ActiveCfg = Debug|Win32 {8C1BB5BA-283E-460F-A682-4548A1DAFA59}.Debug|Win32.Build.0 = Debug|Win32 {8C1BB5BA-283E-460F-A682-4548A1DAFA59}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/spb/SkeletonI2C/skeletoni2c.vcxproj b/spb/SkeletonI2C/skeletoni2c.vcxproj index 2844d1a8..3efbb682 100644 --- a/spb/SkeletonI2C/skeletoni2c.vcxproj +++ b/spb/SkeletonI2C/skeletoni2c.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -97,9 +127,15 @@ skeletoni2c + + skeletoni2c + skeletoni2c + + skeletoni2c + skeletoni2c @@ -127,6 +163,27 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);$(SPB_INC_PATH)\$(SPB_VERSION_MAJOR).$(SPB_VERSION_MINOR) + + + + + %(AdditionalIncludeDirectories);$(SPB_INC_PATH)\$(SPB_VERSION_MAJOR).$(SPB_VERSION_MINOR) + + + %(AdditionalIncludeDirectories);$(SPB_INC_PATH)\$(SPB_VERSION_MAJOR).$(SPB_VERSION_MINOR) + + + %(AdditionalDependencies);$(SPB_LIB_PATH)\$(SPB_VERSION_MAJOR).$(SPB_VERSION_MINOR)\SpbCxStubs.lib;$(DDK_LIB_PATH)\ntstrsafe.lib + + + sha256 + + true @@ -148,6 +205,27 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);$(SPB_INC_PATH)\$(SPB_VERSION_MAJOR).$(SPB_VERSION_MINOR) + + + + + %(AdditionalIncludeDirectories);$(SPB_INC_PATH)\$(SPB_VERSION_MAJOR).$(SPB_VERSION_MINOR) + + + %(AdditionalIncludeDirectories);$(SPB_INC_PATH)\$(SPB_VERSION_MAJOR).$(SPB_VERSION_MINOR) + + + %(AdditionalDependencies);$(SPB_LIB_PATH)\$(SPB_VERSION_MAJOR).$(SPB_VERSION_MINOR)\SpbCxStubs.lib;$(DDK_LIB_PATH)\ntstrsafe.lib + + + sha256 + + true @@ -206,4 +284,4 @@ - \ No newline at end of file + diff --git a/spb/SpbTestTool/SpbTestTool.sln b/spb/SpbTestTool/SpbTestTool.sln index 0c0a4c6a..69f64a8c 100644 --- a/spb/SpbTestTool/SpbTestTool.sln +++ b/spb/SpbTestTool/SpbTestTool.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -13,12 +13,22 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SpbTestTool", "sys\SpbTestT EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D98724B9-FEB8-4D51-B807-1D83E324A9AD}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {D98724B9-FEB8-4D51-B807-1D83E324A9AD}.Debug|ARM64.Build.0 = Debug|ARM64 + {028ED946-EE58-43F7-834B-297119CE4720}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {028ED946-EE58-43F7-834B-297119CE4720}.Debug|ARM64.Build.0 = Debug|ARM64 + {D98724B9-FEB8-4D51-B807-1D83E324A9AD}.Release|ARM64.ActiveCfg = Release|ARM64 + {D98724B9-FEB8-4D51-B807-1D83E324A9AD}.Release|ARM64.Build.0 = Release|ARM64 + {028ED946-EE58-43F7-834B-297119CE4720}.Release|ARM64.ActiveCfg = Release|ARM64 + {028ED946-EE58-43F7-834B-297119CE4720}.Release|ARM64.Build.0 = Release|ARM64 {D98724B9-FEB8-4D51-B807-1D83E324A9AD}.Debug|Win32.ActiveCfg = Debug|Win32 {D98724B9-FEB8-4D51-B807-1D83E324A9AD}.Debug|Win32.Build.0 = Debug|Win32 {D98724B9-FEB8-4D51-B807-1D83E324A9AD}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/spb/SpbTestTool/exe/SpbTestTool.vcxproj b/spb/SpbTestTool/exe/SpbTestTool.vcxproj index a4b8d011..1b7aa81d 100644 --- a/spb/SpbTestTool/exe/SpbTestTool.vcxproj +++ b/spb/SpbTestTool/exe/SpbTestTool.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ SpbTestTool + + SpbTestTool + SpbTestTool + + SpbTestTool + SpbTestTool @@ -93,12 +129,24 @@ Level4 + + + true + Level4 + + true Level4 + + + true + Level4 + + true @@ -132,6 +180,27 @@ sha256 + + + Sync + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);..\sys;$(SDK_INC_PATH) + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);..\sys;$(SDK_INC_PATH) + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);..\sys;$(SDK_INC_PATH) + + + %(AdditionalDependencies);kernel32.lib + + + sha256 + + Sync @@ -153,6 +222,27 @@ sha256 + + + Sync + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);..\sys;$(SDK_INC_PATH) + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);..\sys;$(SDK_INC_PATH) + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);..\sys;$(SDK_INC_PATH) + + + %(AdditionalDependencies);kernel32.lib + + + sha256 + + Sync @@ -213,4 +303,4 @@ - \ No newline at end of file + diff --git a/spb/SpbTestTool/sys/SpbTestTool.vcxproj b/spb/SpbTestTool/sys/SpbTestTool.vcxproj index 072066dc..ff2e4e1d 100644 --- a/spb/SpbTestTool/sys/SpbTestTool.vcxproj +++ b/spb/SpbTestTool/sys/SpbTestTool.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -97,9 +127,15 @@ SpbTestTool + + SpbTestTool + SpbTestTool + + SpbTestTool + SpbTestTool @@ -127,6 +163,27 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);$(SPB_INC_PATH)\$(SPB_VERSION_MAJOR).$(SPB_VERSION_MINOR) + + + + + %(AdditionalIncludeDirectories);$(SPB_INC_PATH)\$(SPB_VERSION_MAJOR).$(SPB_VERSION_MINOR) + + + %(AdditionalIncludeDirectories);$(SPB_INC_PATH)\$(SPB_VERSION_MAJOR).$(SPB_VERSION_MINOR) + + + %(AdditionalDependencies) + + + sha256 + + true @@ -148,6 +205,27 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);$(SPB_INC_PATH)\$(SPB_VERSION_MAJOR).$(SPB_VERSION_MINOR) + + + + + %(AdditionalIncludeDirectories);$(SPB_INC_PATH)\$(SPB_VERSION_MAJOR).$(SPB_VERSION_MINOR) + + + %(AdditionalIncludeDirectories);$(SPB_INC_PATH)\$(SPB_VERSION_MAJOR).$(SPB_VERSION_MINOR) + + + %(AdditionalDependencies) + + + sha256 + + true @@ -206,4 +284,4 @@ - \ No newline at end of file + diff --git a/storage/class/classpnp/classpnp.sln b/storage/class/classpnp/classpnp.sln index 8078e6e1..7630a163 100644 --- a/storage/class/classpnp/classpnp.sln +++ b/storage/class/classpnp/classpnp.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "classpnp", "src\classpnp.vc EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {CAE2DAC6-A407-41A6-A943-11156A103D14}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {CAE2DAC6-A407-41A6-A943-11156A103D14}.Debug|ARM64.Build.0 = Debug|ARM64 + {CAE2DAC6-A407-41A6-A943-11156A103D14}.Release|ARM64.ActiveCfg = Release|ARM64 + {CAE2DAC6-A407-41A6-A943-11156A103D14}.Release|ARM64.Build.0 = Release|ARM64 {CAE2DAC6-A407-41A6-A943-11156A103D14}.Debug|Win32.ActiveCfg = Debug|Win32 {CAE2DAC6-A407-41A6-A943-11156A103D14}.Debug|Win32.Build.0 = Debug|Win32 {CAE2DAC6-A407-41A6-A943-11156A103D14}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/storage/class/classpnp/src/classpnp.vcxproj b/storage/class/classpnp/src/classpnp.vcxproj index 3b4316b1..229fc916 100644 --- a/storage/class/classpnp/src/classpnp.vcxproj +++ b/storage/class/classpnp/src/classpnp.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + ExportDriver + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + ExportDriver + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -95,9 +125,15 @@ classpnp + + classpnp + classpnp + + classpnp + classpnp @@ -135,6 +171,37 @@ %(PreprocessorDefinitions);CLASS_GLOBAL_BUFFERED_DEBUG_PRINT_BUFFERS=512 + + + true + Level4 + %(AdditionalIncludeDirectories);..\inc;..\..\inc + %(PreprocessorDefinitions);CLASS_GLOBAL_BREAK_ON_LOST_IRPS=0 + %(PreprocessorDefinitions);CLASS_GLOBAL_SECONDS_TO_WAIT_FOR_SYNCHRONOUS_SRB=100 + %(PreprocessorDefinitions);CLASS_GLOBAL_USE_DELAYED_RETRY=1 + %(PreprocessorDefinitions);CLASS_GLOBAL_BUFFERED_DEBUG_PRINT=0 + %(PreprocessorDefinitions);CLASS_GLOBAL_BUFFERED_DEBUG_PRINT_BUFFER_SIZE=512 + %(PreprocessorDefinitions);CLASS_GLOBAL_BUFFERED_DEBUG_PRINT_BUFFERS=512 + + + %(AdditionalIncludeDirectories);..\inc;..\..\inc + %(PreprocessorDefinitions);CLASS_GLOBAL_BREAK_ON_LOST_IRPS=0 + %(PreprocessorDefinitions);CLASS_GLOBAL_SECONDS_TO_WAIT_FOR_SYNCHRONOUS_SRB=100 + %(PreprocessorDefinitions);CLASS_GLOBAL_USE_DELAYED_RETRY=1 + %(PreprocessorDefinitions);CLASS_GLOBAL_BUFFERED_DEBUG_PRINT=0 + %(PreprocessorDefinitions);CLASS_GLOBAL_BUFFERED_DEBUG_PRINT_BUFFER_SIZE=512 + %(PreprocessorDefinitions);CLASS_GLOBAL_BUFFERED_DEBUG_PRINT_BUFFERS=512 + + + %(AdditionalIncludeDirectories);..\inc;..\..\inc + %(PreprocessorDefinitions);CLASS_GLOBAL_BREAK_ON_LOST_IRPS=0 + %(PreprocessorDefinitions);CLASS_GLOBAL_SECONDS_TO_WAIT_FOR_SYNCHRONOUS_SRB=100 + %(PreprocessorDefinitions);CLASS_GLOBAL_USE_DELAYED_RETRY=1 + %(PreprocessorDefinitions);CLASS_GLOBAL_BUFFERED_DEBUG_PRINT=0 + %(PreprocessorDefinitions);CLASS_GLOBAL_BUFFERED_DEBUG_PRINT_BUFFER_SIZE=512 + %(PreprocessorDefinitions);CLASS_GLOBAL_BUFFERED_DEBUG_PRINT_BUFFERS=512 + + true @@ -166,6 +233,37 @@ %(PreprocessorDefinitions);CLASS_GLOBAL_BUFFERED_DEBUG_PRINT_BUFFERS=512 + + + true + Level4 + %(AdditionalIncludeDirectories);..\inc;..\..\inc + %(PreprocessorDefinitions);CLASS_GLOBAL_BREAK_ON_LOST_IRPS=0 + %(PreprocessorDefinitions);CLASS_GLOBAL_SECONDS_TO_WAIT_FOR_SYNCHRONOUS_SRB=100 + %(PreprocessorDefinitions);CLASS_GLOBAL_USE_DELAYED_RETRY=1 + %(PreprocessorDefinitions);CLASS_GLOBAL_BUFFERED_DEBUG_PRINT=0 + %(PreprocessorDefinitions);CLASS_GLOBAL_BUFFERED_DEBUG_PRINT_BUFFER_SIZE=512 + %(PreprocessorDefinitions);CLASS_GLOBAL_BUFFERED_DEBUG_PRINT_BUFFERS=512 + + + %(AdditionalIncludeDirectories);..\inc;..\..\inc + %(PreprocessorDefinitions);CLASS_GLOBAL_BREAK_ON_LOST_IRPS=0 + %(PreprocessorDefinitions);CLASS_GLOBAL_SECONDS_TO_WAIT_FOR_SYNCHRONOUS_SRB=100 + %(PreprocessorDefinitions);CLASS_GLOBAL_USE_DELAYED_RETRY=1 + %(PreprocessorDefinitions);CLASS_GLOBAL_BUFFERED_DEBUG_PRINT=0 + %(PreprocessorDefinitions);CLASS_GLOBAL_BUFFERED_DEBUG_PRINT_BUFFER_SIZE=512 + %(PreprocessorDefinitions);CLASS_GLOBAL_BUFFERED_DEBUG_PRINT_BUFFERS=512 + + + %(AdditionalIncludeDirectories);..\inc;..\..\inc + %(PreprocessorDefinitions);CLASS_GLOBAL_BREAK_ON_LOST_IRPS=0 + %(PreprocessorDefinitions);CLASS_GLOBAL_SECONDS_TO_WAIT_FOR_SYNCHRONOUS_SRB=100 + %(PreprocessorDefinitions);CLASS_GLOBAL_USE_DELAYED_RETRY=1 + %(PreprocessorDefinitions);CLASS_GLOBAL_BUFFERED_DEBUG_PRINT=0 + %(PreprocessorDefinitions);CLASS_GLOBAL_BUFFERED_DEBUG_PRINT_BUFFER_SIZE=512 + %(PreprocessorDefinitions);CLASS_GLOBAL_BUFFERED_DEBUG_PRINT_BUFFERS=512 + + true @@ -247,6 +345,25 @@ sha256 + + + %(PreprocessorDefinitions);DEBUG_USE_KDPRINT + + + + + %(PreprocessorDefinitions);DEBUG_USE_KDPRINT + + + %(PreprocessorDefinitions);DEBUG_USE_KDPRINT + + + class.def + + + sha256 + + %(PreprocessorDefinitions);DEBUG_USE_KDPRINT @@ -266,6 +383,25 @@ sha256 + + + %(PreprocessorDefinitions);DEBUG_USE_KDPRINT + + + + + %(PreprocessorDefinitions);DEBUG_USE_KDPRINT + + + %(PreprocessorDefinitions);DEBUG_USE_KDPRINT + + + class.def + + + sha256 + + %(PreprocessorDefinitions);DEBUG_USE_KDPRINT @@ -330,4 +466,4 @@ - \ No newline at end of file + diff --git a/storage/class/disk/disk.sln b/storage/class/disk/disk.sln index 26ff24dd..fc5cb946 100644 --- a/storage/class/disk/disk.sln +++ b/storage/class/disk/disk.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "disk", "src\disk.vcxproj", EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {C4E8B1CC-0131-442C-8EB8-8E84F938878A}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {C4E8B1CC-0131-442C-8EB8-8E84F938878A}.Debug|ARM64.Build.0 = Debug|ARM64 + {C4E8B1CC-0131-442C-8EB8-8E84F938878A}.Release|ARM64.ActiveCfg = Release|ARM64 + {C4E8B1CC-0131-442C-8EB8-8E84F938878A}.Release|ARM64.Build.0 = Release|ARM64 {C4E8B1CC-0131-442C-8EB8-8E84F938878A}.Debug|Win32.ActiveCfg = Debug|Win32 {C4E8B1CC-0131-442C-8EB8-8E84F938878A}.Debug|Win32.Build.0 = Debug|Win32 {C4E8B1CC-0131-442C-8EB8-8E84F938878A}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/storage/class/disk/src/disk.vcxproj b/storage/class/disk/src/disk.vcxproj index a1e3cf5d..e28ed496 100644 --- a/storage/class/disk/src/disk.vcxproj +++ b/storage/class/disk/src/disk.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -90,9 +120,15 @@ disk + + disk + disk + + disk + disk @@ -121,6 +157,28 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\classpnp.lib + + + %(AdditionalIncludeDirectories);..\inc;..\..\inc;..\..\..\inc + %(PreprocessorDefinitions);DEBUG_USE_KDPRINT + + + %(AdditionalIncludeDirectories);..\inc;..\..\inc;..\..\..\inc + %(PreprocessorDefinitions);DEBUG_USE_KDPRINT + + + + + %(AdditionalIncludeDirectories);..\inc;..\..\inc;..\..\..\inc + %(PreprocessorDefinitions);DEBUG_USE_KDPRINT + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\classpnp.lib @@ -143,6 +201,28 @@ sha256 + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\classpnp.lib + + + %(AdditionalIncludeDirectories);..\inc;..\..\inc;..\..\..\inc + %(PreprocessorDefinitions);DEBUG_USE_KDPRINT + + + %(AdditionalIncludeDirectories);..\inc;..\..\inc;..\..\..\inc + %(PreprocessorDefinitions);DEBUG_USE_KDPRINT + + + + + %(AdditionalIncludeDirectories);..\inc;..\..\inc;..\..\..\inc + %(PreprocessorDefinitions);DEBUG_USE_KDPRINT + + + sha256 + + %(AdditionalDependencies);$(DDK_LIB_PATH)\classpnp.lib @@ -203,4 +283,4 @@ - \ No newline at end of file + diff --git a/storage/iscsi/iscsi.sln b/storage/iscsi/iscsi.sln index 819e26da..d25a0ebb 100644 --- a/storage/iscsi/iscsi.sln +++ b/storage/iscsi/iscsi.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "EmptyProject", "src\EmptyPr EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D522AB21-5E8C-4E3F-9934-AE9C8C23C7E6}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {D522AB21-5E8C-4E3F-9934-AE9C8C23C7E6}.Debug|ARM64.Build.0 = Debug|ARM64 + {D522AB21-5E8C-4E3F-9934-AE9C8C23C7E6}.Release|ARM64.ActiveCfg = Release|ARM64 + {D522AB21-5E8C-4E3F-9934-AE9C8C23C7E6}.Release|ARM64.Build.0 = Release|ARM64 {D522AB21-5E8C-4E3F-9934-AE9C8C23C7E6}.Debug|Win32.ActiveCfg = Debug|Win32 {D522AB21-5E8C-4E3F-9934-AE9C8C23C7E6}.Debug|Win32.Build.0 = Debug|Win32 {D522AB21-5E8C-4E3F-9934-AE9C8C23C7E6}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/storage/iscsi/src/EmptyProject.vcxproj b/storage/iscsi/src/EmptyProject.vcxproj index 21c5ce69..034ad2b0 100644 --- a/storage/iscsi/src/EmptyProject.vcxproj +++ b/storage/iscsi/src/EmptyProject.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + False + Desktop + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 True @@ -43,6 +59,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + True + Desktop + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -79,9 +109,15 @@ EmptyProject + + EmptyProject + EmptyProject + + EmptyProject + EmptyProject @@ -97,6 +133,15 @@ true + + + + + + + true + + @@ -106,6 +151,15 @@ true + + + + + + + true + + @@ -137,4 +191,4 @@ - \ No newline at end of file + diff --git a/storage/miniports/lsi_u3/lsi_u3.sln b/storage/miniports/lsi_u3/lsi_u3.sln index 94476382..db73b45d 100644 --- a/storage/miniports/lsi_u3/lsi_u3.sln +++ b/storage/miniports/lsi_u3/lsi_u3.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lsi_u3", "src\lsi_u3.vcxpro EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {75BE5762-0334-4CA9-9018-831B9DFFCB0A}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {75BE5762-0334-4CA9-9018-831B9DFFCB0A}.Debug|ARM64.Build.0 = Debug|ARM64 + {75BE5762-0334-4CA9-9018-831B9DFFCB0A}.Release|ARM64.ActiveCfg = Release|ARM64 + {75BE5762-0334-4CA9-9018-831B9DFFCB0A}.Release|ARM64.Build.0 = Release|ARM64 {75BE5762-0334-4CA9-9018-831B9DFFCB0A}.Debug|Win32.ActiveCfg = Debug|Win32 {75BE5762-0334-4CA9-9018-831B9DFFCB0A}.Debug|Win32.Build.0 = Debug|Win32 {75BE5762-0334-4CA9-9018-831B9DFFCB0A}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/storage/miniports/lsi_u3/src/lsi_u3.inf b/storage/miniports/lsi_u3/src/lsi_u3.inf index 821c9555..8a36e3d1 100644 Binary files a/storage/miniports/lsi_u3/src/lsi_u3.inf and b/storage/miniports/lsi_u3/src/lsi_u3.inf differ diff --git a/storage/miniports/lsi_u3/src/lsi_u3.vcxproj b/storage/miniports/lsi_u3/src/lsi_u3.vcxproj index 4c380734..54e03db6 100644 --- a/storage/miniports/lsi_u3/src/lsi_u3.vcxproj +++ b/storage/miniports/lsi_u3/src/lsi_u3.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Universal + Miniport + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Universal + Miniport + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ lsi_u3 + + lsi_u3 + lsi_u3 + + lsi_u3 + lsi_u3 @@ -109,6 +145,28 @@ sha256 + + + %(AdditionalOptions) /Ob1 + %(AdditionalIncludeDirectories);..\..\inc + true + Level4 + + + + + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\storport.lib + + + sha256 + + %(AdditionalOptions) /Ob1 @@ -131,6 +189,28 @@ sha256 + + + %(AdditionalOptions) /Ob1 + %(AdditionalIncludeDirectories);..\..\inc + true + Level4 + + + + + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\storport.lib + + + sha256 + + %(AdditionalOptions) /Ob1 @@ -192,4 +272,4 @@ - \ No newline at end of file + diff --git a/storage/miniports/storahci/src/inbox/storahci.vcxproj b/storage/miniports/storahci/src/inbox/storahci.vcxproj index 8d3ec54d..67793fce 100644 --- a/storage/miniports/storahci/src/inbox/storahci.vcxproj +++ b/storage/miniports/storahci/src/inbox/storahci.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + Miniport + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + Miniport + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -85,9 +115,15 @@ storahci + + storahci + storahci + + storahci + storahci @@ -115,6 +151,27 @@ sha256 + + + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalIncludeDirectories);..\..\inc;$(KIT_SHARED_INC_PATH_WDK) + true + Level4 + + + + + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\storport.lib + + + sha256 + + %(AdditionalIncludeDirectories);..\..\inc @@ -136,6 +193,27 @@ sha256 + + + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalIncludeDirectories);..\..\inc;$(KIT_SHARED_INC_PATH_WDK) + true + Level4 + + + + + %(AdditionalIncludeDirectories);..\..\inc + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\storport.lib + + + sha256 + + %(AdditionalIncludeDirectories);..\..\inc @@ -226,4 +304,4 @@ - \ No newline at end of file + diff --git a/storage/miniports/storahci/storahci.sln b/storage/miniports/storahci/storahci.sln index fd7aaea4..2582602d 100644 --- a/storage/miniports/storahci/storahci.sln +++ b/storage/miniports/storahci/storahci.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "storahci", "src\inbox\stora EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {1452B3C2-50A6-4F07-BF00-413B7A51E3A4}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {1452B3C2-50A6-4F07-BF00-413B7A51E3A4}.Debug|ARM64.Build.0 = Debug|ARM64 + {1452B3C2-50A6-4F07-BF00-413B7A51E3A4}.Release|ARM64.ActiveCfg = Release|ARM64 + {1452B3C2-50A6-4F07-BF00-413B7A51E3A4}.Release|ARM64.Build.0 = Release|ARM64 {1452B3C2-50A6-4F07-BF00-413B7A51E3A4}.Debug|Win32.ActiveCfg = Debug|Win32 {1452B3C2-50A6-4F07-BF00-413B7A51E3A4}.Debug|Win32.Build.0 = Debug|Win32 {1452B3C2-50A6-4F07-BF00-413B7A51E3A4}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/storage/msdsm/msdsm.sln b/storage/msdsm/msdsm.sln index 26e0a90d..354566eb 100644 --- a/storage/msdsm/msdsm.sln +++ b/storage/msdsm/msdsm.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,16 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleDSM", "src\SampleDSM. EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {65A3C0DB-248E-4365-83D2-E4DE6E764C6C}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {65A3C0DB-248E-4365-83D2-E4DE6E764C6C}.Release|ARM64.ActiveCfg = Release|ARM64 {65A3C0DB-248E-4365-83D2-E4DE6E764C6C}.Debug|Win32.ActiveCfg = Debug|Win32 {65A3C0DB-248E-4365-83D2-E4DE6E764C6C}.Debug|Win32.Build.0 = Debug|Win32 {65A3C0DB-248E-4365-83D2-E4DE6E764C6C}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/storage/msdsm/src/SampleDSM.vcxproj b/storage/msdsm/src/SampleDSM.vcxproj index fe3104b8..85af9d2a 100644 --- a/storage/msdsm/src/SampleDSM.vcxproj +++ b/storage/msdsm/src/SampleDSM.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -142,12 +172,24 @@ Level4 + + + true + Level4 + + true Level4 + + + true + Level4 + + true @@ -163,9 +205,15 @@ SampleDSM + + SampleDSM + SampleDSM + + SampleDSM + SampleDSM @@ -177,11 +225,21 @@ %(AdditionalDependencies);$(DDK_LIB_PATH)\mpio.lib;$(DDK_LIB_PATH)\Rtlver.lib + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\mpio.lib;$(DDK_LIB_PATH)\Rtlver.lib + + %(AdditionalDependencies);$(DDK_LIB_PATH)\mpio.lib;$(DDK_LIB_PATH)\Rtlver.lib + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\mpio.lib;$(DDK_LIB_PATH)\Rtlver.lib + + %(AdditionalDependencies);$(DDK_LIB_PATH)\mpio.lib;$(DDK_LIB_PATH)\Rtlver.lib @@ -211,6 +269,25 @@ sha256 + + + %(AdditionalIncludeDirectories);..\inc + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE + + + %(AdditionalIncludeDirectories);..\inc + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE + + + + + %(AdditionalIncludeDirectories);..\inc + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE + + + sha256 + + %(AdditionalIncludeDirectories);..\inc @@ -230,6 +307,25 @@ sha256 + + + %(AdditionalIncludeDirectories);..\inc + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE + + + %(AdditionalIncludeDirectories);..\inc + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE + + + + + %(AdditionalIncludeDirectories);..\inc + %(PreprocessorDefinitions);_WIN2K_COMPAT_SLIST_USAGE + + + sha256 + + %(AdditionalIncludeDirectories);..\inc @@ -310,4 +406,4 @@ - \ No newline at end of file + diff --git a/storage/tools/spti/spti.sln b/storage/tools/spti/spti.sln index 3075d257..bfe1ca94 100644 --- a/storage/tools/spti/spti.sln +++ b/storage/tools/spti/spti.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "spti", "src\spti.vcxproj", EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {DBA7C5E3-522A-4974-B0C3-543BBC1665FF}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {DBA7C5E3-522A-4974-B0C3-543BBC1665FF}.Debug|ARM64.Build.0 = Debug|ARM64 + {DBA7C5E3-522A-4974-B0C3-543BBC1665FF}.Release|ARM64.ActiveCfg = Release|ARM64 + {DBA7C5E3-522A-4974-B0C3-543BBC1665FF}.Release|ARM64.Build.0 = Release|ARM64 {DBA7C5E3-522A-4974-B0C3-543BBC1665FF}.Debug|Win32.ActiveCfg = Debug|Win32 {DBA7C5E3-522A-4974-B0C3-543BBC1665FF}.Debug|Win32.Build.0 = Debug|Win32 {DBA7C5E3-522A-4974-B0C3-543BBC1665FF}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/storage/tools/spti/src/spti.vcxproj b/storage/tools/spti/src/spti.vcxproj index 6118b8d4..19c8bc28 100644 --- a/storage/tools/spti/src/spti.vcxproj +++ b/storage/tools/spti/src/spti.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ spti + + spti + spti + + spti + spti @@ -102,6 +138,21 @@ %(AdditionalIncludeDirectories);..\..\inc;$(DDK_INC_PATH) + + + true + Level4 + %(AdditionalIncludeDirectories);..\..\inc;$(DDK_INC_PATH) + + + + + %(AdditionalIncludeDirectories);..\..\inc;$(DDK_INC_PATH) + + + %(AdditionalIncludeDirectories);..\..\inc;$(DDK_INC_PATH) + + true @@ -117,6 +168,21 @@ %(AdditionalIncludeDirectories);..\..\inc;$(DDK_INC_PATH) + + + true + Level4 + %(AdditionalIncludeDirectories);..\..\inc;$(DDK_INC_PATH) + + + + + %(AdditionalIncludeDirectories);..\..\inc;$(DDK_INC_PATH) + + + %(AdditionalIncludeDirectories);..\..\inc;$(DDK_INC_PATH) + + true @@ -163,4 +229,4 @@ - \ No newline at end of file + diff --git a/thermal/simsensor/simsensor.sln b/thermal/simsensor/simsensor.sln index 512d83ff..70897349 100644 --- a/thermal/simsensor/simsensor.sln +++ b/thermal/simsensor/simsensor.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "simsensor", "simsensor.vcxp EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {60E9FF6C-6A0E-479C-A299-AA9753CE2ECE}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {60E9FF6C-6A0E-479C-A299-AA9753CE2ECE}.Debug|ARM64.Build.0 = Debug|ARM64 + {60E9FF6C-6A0E-479C-A299-AA9753CE2ECE}.Release|ARM64.ActiveCfg = Release|ARM64 + {60E9FF6C-6A0E-479C-A299-AA9753CE2ECE}.Release|ARM64.Build.0 = Release|ARM64 {60E9FF6C-6A0E-479C-A299-AA9753CE2ECE}.Debug|Win32.ActiveCfg = Debug|Win32 {60E9FF6C-6A0E-479C-A299-AA9753CE2ECE}.Debug|Win32.Build.0 = Debug|Win32 {60E9FF6C-6A0E-479C-A299-AA9753CE2ECE}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/thermal/simsensor/simsensor.vcxproj b/thermal/simsensor/simsensor.vcxproj index 1d77a7de..8e47a6aa 100644 --- a/thermal/simsensor/simsensor.vcxproj +++ b/thermal/simsensor/simsensor.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Universal + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Universal + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -79,9 +109,15 @@ simsensor + + simsensor + simsensor + + simsensor + simsensor @@ -109,6 +145,27 @@ sha256 + + + true + Level4 + %(PreprocessorDefinitions);DRIVER=1;STRICT=1 + %(AdditionalIncludeDirectories);..\inc\ + + + + + %(PreprocessorDefinitions);DRIVER=1;STRICT=1 + %(AdditionalIncludeDirectories);..\inc\ + + + %(PreprocessorDefinitions);DRIVER=1;STRICT=1 + %(AdditionalIncludeDirectories);..\inc\ + + + sha256 + + true @@ -130,6 +187,27 @@ sha256 + + + true + Level4 + %(PreprocessorDefinitions);DRIVER=1;STRICT=1 + %(AdditionalIncludeDirectories);..\inc\ + + + + + %(PreprocessorDefinitions);DRIVER=1;STRICT=1 + %(AdditionalIncludeDirectories);..\inc\ + + + %(PreprocessorDefinitions);DRIVER=1;STRICT=1 + %(AdditionalIncludeDirectories);..\inc\ + + + sha256 + + true @@ -189,4 +267,4 @@ - \ No newline at end of file + diff --git a/thermal/thermalclient/simtc.vcxproj b/thermal/thermalclient/simtc.vcxproj index 2ce2a1dc..8ff9b73a 100644 --- a/thermal/thermalclient/simtc.vcxproj +++ b/thermal/thermalclient/simtc.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -79,9 +109,15 @@ simtc + + simtc + simtc + + simtc + simtc @@ -109,6 +145,27 @@ SHA256 + + + true + Level4 + %(PreprocessorDefinitions);DRIVER=1 + %(AdditionalIncludeDirectories) + + + + + %(PreprocessorDefinitions);DRIVER=1 + %(AdditionalIncludeDirectories) + + + %(PreprocessorDefinitions);DRIVER=1 + %(AdditionalIncludeDirectories) + + + SHA256 + + true @@ -130,6 +187,27 @@ SHA256 + + + true + Level4 + %(PreprocessorDefinitions);DRIVER=1 + %(AdditionalIncludeDirectories) + + + + + %(PreprocessorDefinitions);DRIVER=1 + %(AdditionalIncludeDirectories) + + + %(PreprocessorDefinitions);DRIVER=1 + %(AdditionalIncludeDirectories) + + + SHA256 + + true @@ -189,4 +267,4 @@ - \ No newline at end of file + diff --git a/thermal/thermalclient/thermalclient.sln b/thermal/thermalclient/thermalclient.sln index 5937422f..d2fb861b 100644 --- a/thermal/thermalclient/thermalclient.sln +++ b/thermal/thermalclient/thermalclient.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "simtc", "simtc.vcxproj", "{ EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {0FDA179D-2AF5-4E08-9728-7E4AFC29E73F}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {0FDA179D-2AF5-4E08-9728-7E4AFC29E73F}.Debug|ARM64.Build.0 = Debug|ARM64 + {0FDA179D-2AF5-4E08-9728-7E4AFC29E73F}.Release|ARM64.ActiveCfg = Release|ARM64 + {0FDA179D-2AF5-4E08-9728-7E4AFC29E73F}.Release|ARM64.Build.0 = Release|ARM64 {0FDA179D-2AF5-4E08-9728-7E4AFC29E73F}.Debug|Win32.ActiveCfg = Debug|Win32 {0FDA179D-2AF5-4E08-9728-7E4AFC29E73F}.Debug|Win32.Build.0 = Debug|Win32 {0FDA179D-2AF5-4E08-9728-7E4AFC29E73F}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/usb/UcmUcsiAcpiSample/UcmUcsiAcpiSample.sln b/usb/UcmUcsiAcpiSample/UcmUcsiAcpiSample.sln index be93b746..28725b14 100644 --- a/usb/UcmUcsiAcpiSample/UcmUcsiAcpiSample.sln +++ b/usb/UcmUcsiAcpiSample/UcmUcsiAcpiSample.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 15 VisualStudioVersion = 15.0.28010.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "UcmUcsiAcpiSample", "UcmUcs EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|x64 = Debug|x64 Debug|x86 = Debug|x86 Release|x64 = Release|x64 Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {89486440-A6FB-4E95-9EE9-957B646F28DD}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {89486440-A6FB-4E95-9EE9-957B646F28DD}.Debug|ARM64.Build.0 = Debug|ARM64 + {89486440-A6FB-4E95-9EE9-957B646F28DD}.Release|ARM64.ActiveCfg = Release|ARM64 + {89486440-A6FB-4E95-9EE9-957B646F28DD}.Release|ARM64.Build.0 = Release|ARM64 {89486440-A6FB-4E95-9EE9-957B646F28DD}.Debug|x64.ActiveCfg = Debug|x64 {89486440-A6FB-4E95-9EE9-957B646F28DD}.Debug|x64.Build.0 = Debug|x64 {89486440-A6FB-4E95-9EE9-957B646F28DD}.Debug|x64.Deploy.0 = Debug|x64 diff --git a/usb/UcmUcsiAcpiSample/UcmUcsiAcpiSample/UcmUcsiAcpiSample.vcxproj b/usb/UcmUcsiAcpiSample/UcmUcsiAcpiSample/UcmUcsiAcpiSample.vcxproj index 610fcc44..cbc042fc 100644 --- a/usb/UcmUcsiAcpiSample/UcmUcsiAcpiSample/UcmUcsiAcpiSample.vcxproj +++ b/usb/UcmUcsiAcpiSample/UcmUcsiAcpiSample/UcmUcsiAcpiSample.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -52,6 +60,14 @@ KMDF Windows Driver + + Windows10 + true + WindowsKernelModeDriver10.0 + Driver + KMDF + Windows Driver + Windows10 false @@ -60,6 +76,14 @@ KMDF Windows Driver + + Windows10 + false + WindowsKernelModeDriver10.0 + Driver + KMDF + Windows Driver + @@ -77,9 +101,15 @@ DbgengKernelDebugger + + DbgengKernelDebugger + DbgengKernelDebugger + + DbgengKernelDebugger + true @@ -109,6 +139,20 @@ sha256 + + + true + 4100;4189;5208;%(DisableSpecificWarnings) + false + %(AdditionalIncludeDirectories);$(KIT_SHARED_INC_PATH_WDK) + + + $(DDK_LIB_PATH)\UcmUcsi\1.0\UcmUcsiCxStub.lib;%(AdditionalDependencies) + + + sha256 + + true @@ -122,6 +166,19 @@ sha256 + + + true + 4100;4189;5208;%(DisableSpecificWarnings) + %(AdditionalIncludeDirectories);$(KIT_SHARED_INC_PATH_WDK) + + + $(DDK_LIB_PATH)\UcmUcsi\1.0\UcmUcsiCxStub.lib;%(AdditionalDependencies) + + + sha256 + + true @@ -161,4 +218,4 @@ - \ No newline at end of file + diff --git a/usb/kmdf_enumswitches/kmdf_enumswitches.sln b/usb/kmdf_enumswitches/kmdf_enumswitches.sln index c1e962bf..d05d3a33 100644 --- a/usb/kmdf_enumswitches/kmdf_enumswitches.sln +++ b/usb/kmdf_enumswitches/kmdf_enumswitches.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "kmdf_enumswitches", "sys\km EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {4F9EF7B8-4C30-4654-B431-B6D64C3A2C56}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {4F9EF7B8-4C30-4654-B431-B6D64C3A2C56}.Debug|ARM64.Build.0 = Debug|ARM64 + {4F9EF7B8-4C30-4654-B431-B6D64C3A2C56}.Release|ARM64.ActiveCfg = Release|ARM64 + {4F9EF7B8-4C30-4654-B431-B6D64C3A2C56}.Release|ARM64.Build.0 = Release|ARM64 {4F9EF7B8-4C30-4654-B431-B6D64C3A2C56}.Debug|Win32.ActiveCfg = Debug|Win32 {4F9EF7B8-4C30-4654-B431-B6D64C3A2C56}.Debug|Win32.Build.0 = Debug|Win32 {4F9EF7B8-4C30-4654-B431-B6D64C3A2C56}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/usb/kmdf_enumswitches/sys/kmdf_enumswitches.vcxproj b/usb/kmdf_enumswitches/sys/kmdf_enumswitches.vcxproj index 9f2c505c..c097d147 100644 --- a/usb/kmdf_enumswitches/sys/kmdf_enumswitches.vcxproj +++ b/usb/kmdf_enumswitches/sys/kmdf_enumswitches.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -86,9 +116,15 @@ kmdf_enumswitches + + kmdf_enumswitches + kmdf_enumswitches + + kmdf_enumswitches + kmdf_enumswitches @@ -117,6 +153,28 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);..\inc;. + %(PreprocessorDefinitions);EVENT_TRACING + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\wdmsec.lib + + + %(AdditionalIncludeDirectories);..\inc;. + %(PreprocessorDefinitions);EVENT_TRACING + + + %(AdditionalIncludeDirectories);..\inc;. + %(PreprocessorDefinitions);EVENT_TRACING + + + sha256 + + true @@ -139,6 +197,28 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);..\inc;. + %(PreprocessorDefinitions);EVENT_TRACING + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\wdmsec.lib + + + %(AdditionalIncludeDirectories);..\inc;. + %(PreprocessorDefinitions);EVENT_TRACING + + + %(AdditionalIncludeDirectories);..\inc;. + %(PreprocessorDefinitions);EVENT_TRACING + + + sha256 + + true @@ -186,9 +266,15 @@ 1 + + 1 + 1 + + 1 + 1 @@ -201,12 +287,24 @@ + + + + + + + + + + + + @@ -232,4 +330,4 @@ - \ No newline at end of file + diff --git a/usb/kmdf_fx2/driver/osrusbfx2.vcxproj b/usb/kmdf_fx2/driver/osrusbfx2.vcxproj index de6d2627..5d89eee0 100644 --- a/usb/kmdf_fx2/driver/osrusbfx2.vcxproj +++ b/usb/kmdf_fx2/driver/osrusbfx2.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -37,6 +45,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -45,6 +61,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -68,9 +92,15 @@ + + + + + + @@ -104,9 +134,15 @@ osrusbfx2 + + osrusbfx2 + osrusbfx2 + + osrusbfx2 + osrusbfx2 @@ -135,6 +171,28 @@ sha256 + + + %(AdditionalIncludeDirectories);..\inc;. + %(PreprocessorDefinitions);EVENT_TRACING + + + %(AdditionalIncludeDirectories);..\inc;. + true + Level4 + %(PreprocessorDefinitions);EVENT_TRACING + + + %(AdditionalIncludeDirectories);..\inc;. + %(PreprocessorDefinitions);EVENT_TRACING + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\usbd.lib + + + sha256 + + %(AdditionalIncludeDirectories);..\inc;. @@ -157,6 +215,28 @@ sha256 + + + %(AdditionalIncludeDirectories);..\inc;. + %(PreprocessorDefinitions);EVENT_TRACING + + + %(AdditionalIncludeDirectories);..\inc;. + true + Level4 + %(PreprocessorDefinitions);EVENT_TRACING + + + %(AdditionalIncludeDirectories);..\inc;. + %(PreprocessorDefinitions);EVENT_TRACING + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib;$(DDK_LIB_PATH)\usbd.lib + + + sha256 + + %(AdditionalIncludeDirectories);..\inc;. @@ -204,9 +284,15 @@ 1 + + 1 + 1 + + 1 + 1 @@ -219,12 +305,24 @@ + + + + + + + + + + + + @@ -253,4 +351,4 @@ - \ No newline at end of file + diff --git a/usb/kmdf_fx2/exe/osrusbfx2.vcxproj b/usb/kmdf_fx2/exe/osrusbfx2.vcxproj index dfcc81e1..09251427 100644 --- a/usb/kmdf_fx2/exe/osrusbfx2.vcxproj +++ b/usb/kmdf_fx2/exe/osrusbfx2.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ osrusbfx2 + + osrusbfx2 + osrusbfx2 + + osrusbfx2 + osrusbfx2 @@ -111,6 +147,30 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc;..\sys\inc + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc;..\sys\inc + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc;..\sys\inc + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalDependencies);mincore.lib + + + sha256 + + true @@ -135,6 +195,30 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc;..\sys\inc + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc;..\sys\inc + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc;..\sys\inc + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalDependencies);mincore.lib + + + sha256 + + true @@ -201,4 +285,4 @@ - \ No newline at end of file + diff --git a/usb/kmdf_fx2/kmdf_fx2.sln b/usb/kmdf_fx2/kmdf_fx2.sln index 1f176bb1..c801bc45 100644 --- a/usb/kmdf_fx2/kmdf_fx2.sln +++ b/usb/kmdf_fx2/kmdf_fx2.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -13,12 +13,22 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "osrusbfx2", "exe\osrusbfx2. EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {CACAC18F-9566-4F5B-AB98-CB50469D850A}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {CACAC18F-9566-4F5B-AB98-CB50469D850A}.Debug|ARM64.Build.0 = Debug|ARM64 + {1EDF6B64-0C4A-4481-AD82-D42C0EA2CF58}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {1EDF6B64-0C4A-4481-AD82-D42C0EA2CF58}.Debug|ARM64.Build.0 = Debug|ARM64 + {CACAC18F-9566-4F5B-AB98-CB50469D850A}.Release|ARM64.ActiveCfg = Release|ARM64 + {CACAC18F-9566-4F5B-AB98-CB50469D850A}.Release|ARM64.Build.0 = Release|ARM64 + {1EDF6B64-0C4A-4481-AD82-D42C0EA2CF58}.Release|ARM64.ActiveCfg = Release|ARM64 + {1EDF6B64-0C4A-4481-AD82-D42C0EA2CF58}.Release|ARM64.Build.0 = Release|ARM64 {CACAC18F-9566-4F5B-AB98-CB50469D850A}.Debug|Win32.ActiveCfg = Debug|Win32 {CACAC18F-9566-4F5B-AB98-CB50469D850A}.Debug|Win32.Build.0 = Debug|Win32 {CACAC18F-9566-4F5B-AB98-CB50469D850A}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/usb/ufxclientsample/ufxclientsample.sln b/usb/ufxclientsample/ufxclientsample.sln index 28afebbd..3f352ef1 100644 --- a/usb/ufxclientsample/ufxclientsample.sln +++ b/usb/ufxclientsample/ufxclientsample.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ufxclientsample", "ufxclien EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {DC336318-35D0-4770-A842-46952EDD50D0}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {DC336318-35D0-4770-A842-46952EDD50D0}.Debug|ARM64.Build.0 = Debug|ARM64 + {DC336318-35D0-4770-A842-46952EDD50D0}.Release|ARM64.ActiveCfg = Release|ARM64 + {DC336318-35D0-4770-A842-46952EDD50D0}.Release|ARM64.Build.0 = Release|ARM64 {DC336318-35D0-4770-A842-46952EDD50D0}.Debug|Win32.ActiveCfg = Debug|Win32 {DC336318-35D0-4770-A842-46952EDD50D0}.Debug|Win32.Build.0 = Debug|Win32 {DC336318-35D0-4770-A842-46952EDD50D0}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/usb/ufxclientsample/ufxclientsample.vcxproj b/usb/ufxclientsample/ufxclientsample.vcxproj index 47191de8..d66b9d35 100644 --- a/usb/ufxclientsample/ufxclientsample.vcxproj +++ b/usb/ufxclientsample/ufxclientsample.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -102,9 +132,15 @@ ufxclientsample + + ufxclientsample + ufxclientsample + + ufxclientsample + ufxclientsample @@ -135,6 +171,30 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH)\ufx\1.1 + %(PreprocessorDefinitions);KERNEL_MODE + + + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ufx\1.1\ufxstub.lib;$(DDK_LIB_PATH)\ntstrsafe.lib + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH)\ufx\1.1 + %(PreprocessorDefinitions);KERNEL_MODE + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH)\ufx\1.1 + %(PreprocessorDefinitions);KERNEL_MODE + + + sha256 + + true @@ -159,6 +219,30 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH)\ufx\1.1 + %(PreprocessorDefinitions);KERNEL_MODE + + + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ufx\1.1\ufxstub.lib;$(DDK_LIB_PATH)\ntstrsafe.lib + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH)\ufx\1.1 + %(PreprocessorDefinitions);KERNEL_MODE + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH)\ufx\1.1 + %(PreprocessorDefinitions);KERNEL_MODE + + + sha256 + + true @@ -223,4 +307,4 @@ - \ No newline at end of file + diff --git a/usb/umdf2_fx2/driver/osrusbfx2um.vcxproj b/usb/umdf2_fx2/driver/osrusbfx2um.vcxproj index c3c2fe1f..369e0900 100644 --- a/usb/umdf2_fx2/driver/osrusbfx2um.vcxproj +++ b/usb/umdf2_fx2/driver/osrusbfx2um.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + False + Universal + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 True @@ -43,6 +59,14 @@ WindowsUserModeDriver10.0 DynamicLibrary + + Windows10 + True + Universal + UMDF + WindowsUserModeDriver10.0 + DynamicLibrary + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -98,10 +128,18 @@ osrusbfx2um 1 + + osrusbfx2um + 1 + osrusbfx2um 1 + + osrusbfx2um + 1 + osrusbfx2um 1 @@ -134,6 +172,30 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);..\inc;. + %(PreprocessorDefinitions);EVENT_TRACING;UNICODE;_UNICODE + + + + + %(AdditionalIncludeDirectories);..\inc;. + %(PreprocessorDefinitions);EVENT_TRACING;UNICODE;_UNICODE + + + %(AdditionalIncludeDirectories);..\inc;. + %(PreprocessorDefinitions);EVENT_TRACING;UNICODE;_UNICODE + + + %(AdditionalDependencies);mincore.lib;$(WDK_UM_LIB_PATH)\WppRecorderUM.lib + + + sha256 + + true @@ -158,6 +220,30 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);..\inc;. + %(PreprocessorDefinitions);EVENT_TRACING;UNICODE;_UNICODE + + + + + %(AdditionalIncludeDirectories);..\inc;. + %(PreprocessorDefinitions);EVENT_TRACING;UNICODE;_UNICODE + + + %(AdditionalIncludeDirectories);..\inc;. + %(PreprocessorDefinitions);EVENT_TRACING;UNICODE;_UNICODE + + + %(AdditionalDependencies);mincore.lib;$(WDK_UM_LIB_PATH)\WppRecorderUM.lib + + + sha256 + + true @@ -219,4 +305,4 @@ - \ No newline at end of file + diff --git a/usb/umdf2_fx2/exe/osrusbfx2.vcxproj b/usb/umdf2_fx2/exe/osrusbfx2.vcxproj index dfcc81e1..09251427 100644 --- a/usb/umdf2_fx2/exe/osrusbfx2.vcxproj +++ b/usb/umdf2_fx2/exe/osrusbfx2.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ osrusbfx2 + + osrusbfx2 + osrusbfx2 + + osrusbfx2 + osrusbfx2 @@ -111,6 +147,30 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc;..\sys\inc + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc;..\sys\inc + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc;..\sys\inc + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalDependencies);mincore.lib + + + sha256 + + true @@ -135,6 +195,30 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc;..\sys\inc + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc;..\sys\inc + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc;..\sys\inc + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalDependencies);mincore.lib + + + sha256 + + true @@ -201,4 +285,4 @@ - \ No newline at end of file + diff --git a/usb/umdf2_fx2/umdf2_fx2.sln b/usb/umdf2_fx2/umdf2_fx2.sln index b31996d2..4095f4f2 100644 --- a/usb/umdf2_fx2/umdf2_fx2.sln +++ b/usb/umdf2_fx2/umdf2_fx2.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.7.34221.43 @@ -13,12 +13,22 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "osrusbfx2", "exe\osrusbfx2. EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Debug|x64 = Debug|x64 Release|Win32 = Release|Win32 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {5B711254-3F53-4E1D-A1AD-CC81E34588B7}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {5B711254-3F53-4E1D-A1AD-CC81E34588B7}.Debug|ARM64.Build.0 = Debug|ARM64 + {6EED5CDD-5526-40DC-97F9-582857E10187}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {6EED5CDD-5526-40DC-97F9-582857E10187}.Debug|ARM64.Build.0 = Debug|ARM64 + {5B711254-3F53-4E1D-A1AD-CC81E34588B7}.Release|ARM64.ActiveCfg = Release|ARM64 + {5B711254-3F53-4E1D-A1AD-CC81E34588B7}.Release|ARM64.Build.0 = Release|ARM64 + {6EED5CDD-5526-40DC-97F9-582857E10187}.Release|ARM64.ActiveCfg = Release|ARM64 + {6EED5CDD-5526-40DC-97F9-582857E10187}.Release|ARM64.Build.0 = Release|ARM64 {5B711254-3F53-4E1D-A1AD-CC81E34588B7}.Debug|Win32.ActiveCfg = Debug|Win32 {5B711254-3F53-4E1D-A1AD-CC81E34588B7}.Debug|Win32.Build.0 = Debug|Win32 {5B711254-3F53-4E1D-A1AD-CC81E34588B7}.Debug|x64.ActiveCfg = Debug|x64 diff --git a/usb/usbsamp/exe/usbsamp.vcxproj b/usb/usbsamp/exe/usbsamp.vcxproj index 8e9de3b1..47b7ecb2 100644 --- a/usb/usbsamp/exe/usbsamp.vcxproj +++ b/usb/usbsamp/exe/usbsamp.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ usbsamp + + usbsamp + usbsamp + + usbsamp + usbsamp @@ -108,6 +144,27 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\sys + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\sys + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\sys + + + %(AdditionalDependencies);setupapi.lib + + + sha256 + + true @@ -129,6 +186,27 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\sys + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\sys + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\sys + + + %(AdditionalDependencies);setupapi.lib + + + sha256 + + true @@ -188,4 +266,4 @@ - \ No newline at end of file + diff --git a/usb/usbsamp/sys/driver/usbsamp.vcxproj b/usb/usbsamp/sys/driver/usbsamp.vcxproj index 528d765b..04f8ed81 100644 --- a/usb/usbsamp/sys/driver/usbsamp.vcxproj +++ b/usb/usbsamp/sys/driver/usbsamp.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -79,9 +109,15 @@ usbsamp + + usbsamp + usbsamp + + usbsamp + usbsamp @@ -112,6 +148,30 @@ sha256 + + + true + Level4 + %(PreprocessorDefinitions) + %(AdditionalIncludeDirectories);.. + + + + + %(PreprocessorDefinitions) + %(AdditionalIncludeDirectories);.. + + + %(PreprocessorDefinitions) + %(AdditionalIncludeDirectories);.. + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\usbdex.lib;$(DDK_LIB_PATH)\usbd.lib;$(DDK_LIB_PATH)\ntstrsafe.lib + + + sha256 + + true @@ -136,6 +196,30 @@ sha256 + + + true + Level4 + %(PreprocessorDefinitions) + %(AdditionalIncludeDirectories);.. + + + + + %(PreprocessorDefinitions) + %(AdditionalIncludeDirectories);.. + + + %(PreprocessorDefinitions) + %(AdditionalIncludeDirectories);.. + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\usbdex.lib;$(DDK_LIB_PATH)\usbd.lib;$(DDK_LIB_PATH)\ntstrsafe.lib + + + sha256 + + true @@ -206,4 +290,4 @@ - \ No newline at end of file + diff --git a/usb/usbsamp/usbsamp.sln b/usb/usbsamp/usbsamp.sln index a267027e..fa94c4f2 100644 --- a/usb/usbsamp/usbsamp.sln +++ b/usb/usbsamp/usbsamp.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -15,12 +15,22 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "usbsamp", "sys\driver\usbsa EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {623636B5-DD4A-4473-93C4-7F548F4F661C}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {623636B5-DD4A-4473-93C4-7F548F4F661C}.Debug|ARM64.Build.0 = Debug|ARM64 + {EA4EE96E-A970-43CE-A269-514909A10BAB}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {EA4EE96E-A970-43CE-A269-514909A10BAB}.Debug|ARM64.Build.0 = Debug|ARM64 + {623636B5-DD4A-4473-93C4-7F548F4F661C}.Release|ARM64.ActiveCfg = Release|ARM64 + {623636B5-DD4A-4473-93C4-7F548F4F661C}.Release|ARM64.Build.0 = Release|ARM64 + {EA4EE96E-A970-43CE-A269-514909A10BAB}.Release|ARM64.ActiveCfg = Release|ARM64 + {EA4EE96E-A970-43CE-A269-514909A10BAB}.Release|ARM64.Build.0 = Release|ARM64 {623636B5-DD4A-4473-93C4-7F548F4F661C}.Debug|Win32.ActiveCfg = Debug|Win32 {623636B5-DD4A-4473-93C4-7F548F4F661C}.Debug|Win32.Build.0 = Debug|Win32 {623636B5-DD4A-4473-93C4-7F548F4F661C}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/usb/usbview/usbview.sln b/usb/usbview/usbview.sln index bc2819c4..b00f83d7 100644 --- a/usb/usbview/usbview.sln +++ b/usb/usbview/usbview.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "usbview", "usbview.vcxproj" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {287B60C4-636F-4CE7-91C2-04E03A01B9C5}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {287B60C4-636F-4CE7-91C2-04E03A01B9C5}.Debug|ARM64.Build.0 = Debug|ARM64 + {287B60C4-636F-4CE7-91C2-04E03A01B9C5}.Release|ARM64.ActiveCfg = Release|ARM64 + {287B60C4-636F-4CE7-91C2-04E03A01B9C5}.Release|ARM64.Build.0 = Release|ARM64 {287B60C4-636F-4CE7-91C2-04E03A01B9C5}.Debug|Win32.ActiveCfg = Debug|Win32 {287B60C4-636F-4CE7-91C2-04E03A01B9C5}.Debug|Win32.Build.0 = Debug|Win32 {287B60C4-636F-4CE7-91C2-04E03A01B9C5}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/usb/usbview/usbview.vcxproj b/usb/usbview/usbview.vcxproj index fa1866e0..5d3becaa 100644 --- a/usb/usbview/usbview.vcxproj +++ b/usb/usbview/usbview.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Desktop + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Desktop + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -79,10 +109,18 @@ usbview true + + usbview + true + usbview true + + usbview + true + usbview true @@ -108,6 +146,23 @@ sha256 + + + true + true + Level4 + + + + + 0x101000000 + 0x1000000 + %(AdditionalDependencies);shell32.lib;kernel32.lib;user32.lib;gdi32.lib;comctl32.lib;cfgmgr32.lib;comdlg32.lib;ole32.lib;setupapi.lib;strsafe.lib;shlwapi.lib + + + sha256 + + true @@ -125,6 +180,23 @@ sha256 + + + true + true + Level4 + + + + + 0x101000000 + 0x1000000 + %(AdditionalDependencies);shell32.lib;kernel32.lib;user32.lib;gdi32.lib;comctl32.lib;cfgmgr32.lib;comdlg32.lib;ole32.lib;setupapi.lib;strsafe.lib;shlwapi.lib + + + sha256 + + true diff --git a/usb/wdf_osrfx2_lab/kmdf/exe/osrusbfx2.vcxproj b/usb/wdf_osrfx2_lab/kmdf/exe/osrusbfx2.vcxproj index dfcc81e1..09251427 100644 --- a/usb/wdf_osrfx2_lab/kmdf/exe/osrusbfx2.vcxproj +++ b/usb/wdf_osrfx2_lab/kmdf/exe/osrusbfx2.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 Application + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + Application + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ osrusbfx2 + + osrusbfx2 + osrusbfx2 + + osrusbfx2 + osrusbfx2 @@ -111,6 +147,30 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc;..\sys\inc + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc;..\sys\inc + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc;..\sys\inc + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalDependencies);mincore.lib + + + sha256 + + true @@ -135,6 +195,30 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc;..\sys\inc + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc;..\sys\inc + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);..\inc;..\sys\inc + %(PreprocessorDefinitions);UNICODE;_UNICODE + + + %(AdditionalDependencies);mincore.lib + + + sha256 + + true @@ -201,4 +285,4 @@ - \ No newline at end of file + diff --git a/usb/wdf_osrfx2_lab/kmdf/step1/osrusbfx2.vcxproj b/usb/wdf_osrfx2_lab/kmdf/step1/osrusbfx2.vcxproj index 673d4bdc..5505d5f3 100644 --- a/usb/wdf_osrfx2_lab/kmdf/step1/osrusbfx2.vcxproj +++ b/usb/wdf_osrfx2_lab/kmdf/step1/osrusbfx2.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -79,9 +109,15 @@ osrusbfx2 + + osrusbfx2 + osrusbfx2 + + osrusbfx2 + osrusbfx2 @@ -106,6 +142,24 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);..\inc + + + + + %(AdditionalIncludeDirectories);..\inc + + + %(AdditionalIncludeDirectories);..\inc + + + sha256 + + true @@ -124,6 +178,24 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);..\inc + + + + + %(AdditionalIncludeDirectories);..\inc + + + %(AdditionalIncludeDirectories);..\inc + + + sha256 + + true @@ -176,4 +248,4 @@ - \ No newline at end of file + diff --git a/usb/wdf_osrfx2_lab/kmdf/step2/osrusbfx2.vcxproj b/usb/wdf_osrfx2_lab/kmdf/step2/osrusbfx2.vcxproj index bd29a7db..a58ba18b 100644 --- a/usb/wdf_osrfx2_lab/kmdf/step2/osrusbfx2.vcxproj +++ b/usb/wdf_osrfx2_lab/kmdf/step2/osrusbfx2.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -79,9 +109,15 @@ osrusbfx2 + + osrusbfx2 + osrusbfx2 + + osrusbfx2 + osrusbfx2 @@ -106,6 +142,24 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);..\inc + + + + + %(AdditionalIncludeDirectories);..\inc + + + %(AdditionalIncludeDirectories);..\inc + + + sha256 + + true @@ -124,6 +178,24 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);..\inc + + + + + %(AdditionalIncludeDirectories);..\inc + + + %(AdditionalIncludeDirectories);..\inc + + + sha256 + + true @@ -176,4 +248,4 @@ - \ No newline at end of file + diff --git a/usb/wdf_osrfx2_lab/kmdf/step3/osrusbfx2.vcxproj b/usb/wdf_osrfx2_lab/kmdf/step3/osrusbfx2.vcxproj index 869d9caf..9d046068 100644 --- a/usb/wdf_osrfx2_lab/kmdf/step3/osrusbfx2.vcxproj +++ b/usb/wdf_osrfx2_lab/kmdf/step3/osrusbfx2.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -79,9 +109,15 @@ osrusbfx2 + + osrusbfx2 + osrusbfx2 + + osrusbfx2 + osrusbfx2 @@ -106,6 +142,24 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);..\inc + + + + + %(AdditionalIncludeDirectories);..\inc + + + %(AdditionalIncludeDirectories);..\inc + + + sha256 + + true @@ -124,6 +178,24 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);..\inc + + + + + %(AdditionalIncludeDirectories);..\inc + + + %(AdditionalIncludeDirectories);..\inc + + + sha256 + + true @@ -176,4 +248,4 @@ - \ No newline at end of file + diff --git a/usb/wdf_osrfx2_lab/kmdf/step4/osrusbfx2.vcxproj b/usb/wdf_osrfx2_lab/kmdf/step4/osrusbfx2.vcxproj index fbe15747..a7527c3e 100644 --- a/usb/wdf_osrfx2_lab/kmdf/step4/osrusbfx2.vcxproj +++ b/usb/wdf_osrfx2_lab/kmdf/step4/osrusbfx2.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -79,9 +109,15 @@ osrusbfx2 + + osrusbfx2 + osrusbfx2 + + osrusbfx2 + osrusbfx2 @@ -106,6 +142,24 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);..\inc + + + + + %(AdditionalIncludeDirectories);..\inc + + + %(AdditionalIncludeDirectories);..\inc + + + sha256 + + true @@ -124,6 +178,24 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);..\inc + + + + + %(AdditionalIncludeDirectories);..\inc + + + %(AdditionalIncludeDirectories);..\inc + + + sha256 + + true @@ -176,4 +248,4 @@ - \ No newline at end of file + diff --git a/usb/wdf_osrfx2_lab/kmdf/step5/osrusbfx2.vcxproj b/usb/wdf_osrfx2_lab/kmdf/step5/osrusbfx2.vcxproj index e4206603..9d57072c 100644 --- a/usb/wdf_osrfx2_lab/kmdf/step5/osrusbfx2.vcxproj +++ b/usb/wdf_osrfx2_lab/kmdf/step5/osrusbfx2.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -87,9 +117,15 @@ osrusbfx2 + + osrusbfx2 + osrusbfx2 + + osrusbfx2 + osrusbfx2 @@ -117,6 +153,27 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);..\inc + + + + + %(AdditionalIncludeDirectories);..\inc + + + %(AdditionalIncludeDirectories);..\inc + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib + + + sha256 + + true @@ -138,6 +195,27 @@ sha256 + + + true + Level4 + %(AdditionalIncludeDirectories);..\inc + + + + + %(AdditionalIncludeDirectories);..\inc + + + %(AdditionalIncludeDirectories);..\inc + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\ntstrsafe.lib + + + sha256 + + true @@ -193,4 +271,4 @@ - \ No newline at end of file + diff --git a/usb/wdf_osrfx2_lab/wdf_osrfx2_lab.sln b/usb/wdf_osrfx2_lab/wdf_osrfx2_lab.sln index 13795799..c6d39e1c 100644 --- a/usb/wdf_osrfx2_lab/wdf_osrfx2_lab.sln +++ b/usb/wdf_osrfx2_lab/wdf_osrfx2_lab.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -31,12 +31,38 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "osrusbfx2", "kmdf\exe\osrus EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {E54BDD18-FDE9-42BF-BC23-343F8764B387}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {E54BDD18-FDE9-42BF-BC23-343F8764B387}.Debug|ARM64.Build.0 = Debug|ARM64 + {CE2CAF81-E96B-4C32-9BE9-58238742D295}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {CE2CAF81-E96B-4C32-9BE9-58238742D295}.Debug|ARM64.Build.0 = Debug|ARM64 + {70D6E15B-26A9-444C-B4DE-93504AD529E1}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {70D6E15B-26A9-444C-B4DE-93504AD529E1}.Debug|ARM64.Build.0 = Debug|ARM64 + {AE6270A1-FAC6-45B2-A641-9BFAF534DD01}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {AE6270A1-FAC6-45B2-A641-9BFAF534DD01}.Debug|ARM64.Build.0 = Debug|ARM64 + {EEB5FBCF-333A-4D54-B937-C24FB0CC10EB}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {EEB5FBCF-333A-4D54-B937-C24FB0CC10EB}.Debug|ARM64.Build.0 = Debug|ARM64 + {6EED5CDD-5526-40DC-97F9-582857E10187}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {6EED5CDD-5526-40DC-97F9-582857E10187}.Debug|ARM64.Build.0 = Debug|ARM64 + {E54BDD18-FDE9-42BF-BC23-343F8764B387}.Release|ARM64.ActiveCfg = Release|ARM64 + {E54BDD18-FDE9-42BF-BC23-343F8764B387}.Release|ARM64.Build.0 = Release|ARM64 + {CE2CAF81-E96B-4C32-9BE9-58238742D295}.Release|ARM64.ActiveCfg = Release|ARM64 + {CE2CAF81-E96B-4C32-9BE9-58238742D295}.Release|ARM64.Build.0 = Release|ARM64 + {70D6E15B-26A9-444C-B4DE-93504AD529E1}.Release|ARM64.ActiveCfg = Release|ARM64 + {70D6E15B-26A9-444C-B4DE-93504AD529E1}.Release|ARM64.Build.0 = Release|ARM64 + {AE6270A1-FAC6-45B2-A641-9BFAF534DD01}.Release|ARM64.ActiveCfg = Release|ARM64 + {AE6270A1-FAC6-45B2-A641-9BFAF534DD01}.Release|ARM64.Build.0 = Release|ARM64 + {EEB5FBCF-333A-4D54-B937-C24FB0CC10EB}.Release|ARM64.ActiveCfg = Release|ARM64 + {EEB5FBCF-333A-4D54-B937-C24FB0CC10EB}.Release|ARM64.Build.0 = Release|ARM64 + {6EED5CDD-5526-40DC-97F9-582857E10187}.Release|ARM64.ActiveCfg = Release|ARM64 + {6EED5CDD-5526-40DC-97F9-582857E10187}.Release|ARM64.Build.0 = Release|ARM64 {E54BDD18-FDE9-42BF-BC23-343F8764B387}.Debug|Win32.ActiveCfg = Debug|Win32 {E54BDD18-FDE9-42BF-BC23-343F8764B387}.Debug|Win32.Build.0 = Debug|Win32 {E54BDD18-FDE9-42BF-BC23-343F8764B387}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/video/KMDOD/KMDOD.sln b/video/KMDOD/KMDOD.sln index 580887ed..f647d7c5 100644 --- a/video/KMDOD/KMDOD.sln +++ b/video/KMDOD/KMDOD.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SampleDisplay", "Sample\Sam EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D3C62015-3845-4DA8-8522-5DC45B735063}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {D3C62015-3845-4DA8-8522-5DC45B735063}.Debug|ARM64.Build.0 = Debug|ARM64 + {D3C62015-3845-4DA8-8522-5DC45B735063}.Release|ARM64.ActiveCfg = Release|ARM64 + {D3C62015-3845-4DA8-8522-5DC45B735063}.Release|ARM64.Build.0 = Release|ARM64 {D3C62015-3845-4DA8-8522-5DC45B735063}.Debug|Win32.ActiveCfg = Debug|Win32 {D3C62015-3845-4DA8-8522-5DC45B735063}.Debug|Win32.Build.0 = Debug|Win32 {D3C62015-3845-4DA8-8522-5DC45B735063}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/video/KMDOD/Sample/SampleDisplay.vcxproj b/video/KMDOD/Sample/SampleDisplay.vcxproj index 6dfa431c..b4200b24 100644 --- a/video/KMDOD/Sample/SampleDisplay.vcxproj +++ b/video/KMDOD/Sample/SampleDisplay.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -42,6 +58,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Universal + WDM + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -89,6 +119,20 @@ %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH) + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\displib.lib;$(DDK_LIB_PATH)\ntoskrnl.lib + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH) + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH);$(KIT_SHARED_INC_PATH_WDK) + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH) + + %(AdditionalDependencies);$(DDK_LIB_PATH)\displib.lib;$(DDK_LIB_PATH)\ntoskrnl.lib @@ -103,6 +147,20 @@ %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH) + + + %(AdditionalDependencies);$(DDK_LIB_PATH)\displib.lib;$(DDK_LIB_PATH)\ntoskrnl.lib + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH) + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH);$(KIT_SHARED_INC_PATH_WDK) + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH);$(SDK_INC_PATH) + + %(AdditionalDependencies);$(DDK_LIB_PATH)\displib.lib;$(DDK_LIB_PATH)\ntoskrnl.lib @@ -134,9 +192,15 @@ SampleDisplay + + SampleDisplay + SampleDisplay + + SampleDisplay + SampleDisplay @@ -153,6 +217,16 @@ sha256 + + + Level4 + + + + + sha256 + + Level4 @@ -163,6 +237,16 @@ sha256 + + + Level4 + + + + + sha256 + + Level4 @@ -206,4 +290,4 @@ - \ No newline at end of file + diff --git a/video/archive/pixlib/PixLib.vcxproj b/video/archive/pixlib/PixLib.vcxproj index abd7956b..dc457380 100644 --- a/video/archive/pixlib/PixLib.vcxproj +++ b/video/archive/pixlib/PixLib.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 StaticLibrary + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + StaticLibrary + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 StaticLibrary + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + StaticLibrary + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ PixLib + + PixLib + PixLib + + PixLib + PixLib @@ -98,6 +134,17 @@ %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) @@ -109,6 +156,17 @@ %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) @@ -147,4 +205,4 @@ - \ No newline at end of file + diff --git a/video/archive/pixlib/pixlib.sln b/video/archive/pixlib/pixlib.sln index f34f570a..b177da8a 100644 --- a/video/archive/pixlib/pixlib.sln +++ b/video/archive/pixlib/pixlib.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PixLib", "PixLib.vcxproj", EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {59DE6E25-B0B8-49FF-A952-5D1412A6973B}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {59DE6E25-B0B8-49FF-A952-5D1412A6973B}.Debug|ARM64.Build.0 = Debug|ARM64 + {59DE6E25-B0B8-49FF-A952-5D1412A6973B}.Release|ARM64.ActiveCfg = Release|ARM64 + {59DE6E25-B0B8-49FF-A952-5D1412A6973B}.Release|ARM64.Build.0 = Release|ARM64 {59DE6E25-B0B8-49FF-A952-5D1412A6973B}.Debug|Win32.ActiveCfg = Debug|Win32 {59DE6E25-B0B8-49FF-A952-5D1412A6973B}.Debug|Win32.Build.0 = Debug|Win32 {59DE6E25-B0B8-49FF-A952-5D1412A6973B}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/wia/ProdScan/ProdScan.vcxproj b/wia/ProdScan/ProdScan.vcxproj index a94d26db..95c4ec42 100644 --- a/wia/ProdScan/ProdScan.vcxproj +++ b/wia/ProdScan/ProdScan.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + False + Desktop + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + True + Desktop + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -85,9 +115,15 @@ ProdScan + + ProdScan + ProdScan + + ProdScan + ProdScan @@ -100,12 +136,24 @@ _DllMainCRTStartup + + + _DllMainCRTStartup@12 + _DllMainCRTStartup + + _DllMainCRTStartup@12 _DllMainCRTStartup + + + _DllMainCRTStartup@12 + _DllMainCRTStartup + + _DllMainCRTStartup@12 @@ -140,6 +188,28 @@ ProdScan.def + + + %(PreprocessorDefinitions);UNICODE;_UNICODE;WIA_DEBUG + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(SDK_INC_PATH)\gdiplus;$(DDK_INC_PATH) + + + /Wv:18 %(AdditionalOptions) + + + %(PreprocessorDefinitions);UNICODE;_UNICODE;WIA_DEBUG + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(SDK_INC_PATH)\gdiplus;$(DDK_INC_PATH) + + + %(PreprocessorDefinitions);UNICODE;_UNICODE;WIA_DEBUG + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(SDK_INC_PATH)\gdiplus;$(DDK_INC_PATH) + + + %(AdditionalDependencies);wiaguid.lib;wiaservc.lib;ADVAPI32.lib;GDI32.lib;KERNEL32.lib;user32.lib;oleaut32.lib;ole32.lib;uuid.lib;shlwapi.lib;sti.lib;gdiplus.lib;Rpcrt4.lib + %(AdditionalOptions) /ignore:4070 + ProdScan.def + + %(PreprocessorDefinitions);UNICODE;_UNICODE;WIA_DEBUG @@ -162,6 +232,28 @@ ProdScan.def + + + %(PreprocessorDefinitions);UNICODE;_UNICODE;WIA_DEBUG + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(SDK_INC_PATH)\gdiplus;$(DDK_INC_PATH) + + + /Wv:18 %(AdditionalOptions) + + + %(PreprocessorDefinitions);UNICODE;_UNICODE;WIA_DEBUG + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(SDK_INC_PATH)\gdiplus;$(DDK_INC_PATH) + + + %(PreprocessorDefinitions);UNICODE;_UNICODE;WIA_DEBUG + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(SDK_INC_PATH)\gdiplus;$(DDK_INC_PATH) + + + %(AdditionalDependencies);wiaguid.lib;wiaservc.lib;ADVAPI32.lib;GDI32.lib;KERNEL32.lib;user32.lib;oleaut32.lib;ole32.lib;uuid.lib;shlwapi.lib;sti.lib;gdiplus.lib;Rpcrt4.lib + %(AdditionalOptions) /ignore:4070 + ProdScan.def + + %(PreprocessorDefinitions);UNICODE;_UNICODE;WIA_DEBUG @@ -233,4 +325,4 @@ - \ No newline at end of file + diff --git a/wia/microdrv/testmcro.vcxproj b/wia/microdrv/testmcro.vcxproj index e382e4de..ea68c0fa 100644 --- a/wia/microdrv/testmcro.vcxproj +++ b/wia/microdrv/testmcro.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -85,9 +115,15 @@ testmcro + + testmcro + testmcro + + testmcro + testmcro @@ -100,12 +136,24 @@ _DllMainCRTStartup + + + _DllMainCRTStartup@12 + _DllMainCRTStartup + + _DllMainCRTStartup@12 _DllMainCRTStartup + + + _DllMainCRTStartup@12 + _DllMainCRTStartup + + _DllMainCRTStartup@12 @@ -135,6 +183,23 @@ testmcro.def + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + + + %(AdditionalDependencies);kernel32.lib;advapi32.lib;user32.lib;gdi32.lib;ole32.lib;uuid.lib;oleaut32.lib + testmcro.def + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) @@ -152,6 +217,23 @@ testmcro.def + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + + + + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) + + + %(AdditionalDependencies);kernel32.lib;advapi32.lib;user32.lib;gdi32.lib;ole32.lib;uuid.lib;oleaut32.lib + testmcro.def + + %(AdditionalIncludeDirectories);$(DDK_INC_PATH) @@ -203,4 +285,4 @@ - \ No newline at end of file + diff --git a/wia/wia.sln b/wia/wia.sln index ff7ac18a..17948d84 100644 --- a/wia/wia.sln +++ b/wia/wia.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -35,12 +35,42 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ProdScan", "ProdScan\ProdSc EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {823A3A7D-47CE-46A7-BEC6-87E16E61CCE7}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {823A3A7D-47CE-46A7-BEC6-87E16E61CCE7}.Debug|ARM64.Build.0 = Debug|ARM64 + {DD1B17F5-27B3-4EC3-9F49-B8BCA0A07B4A}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {DD1B17F5-27B3-4EC3-9F49-B8BCA0A07B4A}.Debug|ARM64.Build.0 = Debug|ARM64 + {12455A18-956A-4030-B1C2-4C3EA1A827AD}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {12455A18-956A-4030-B1C2-4C3EA1A827AD}.Debug|ARM64.Build.0 = Debug|ARM64 + {4514674D-F69E-4C3B-902F-23FB5F04DB40}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {4514674D-F69E-4C3B-902F-23FB5F04DB40}.Debug|ARM64.Build.0 = Debug|ARM64 + {D8EF524D-29CB-4721-8EBE-1A049ECE53A2}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {D8EF524D-29CB-4721-8EBE-1A049ECE53A2}.Debug|ARM64.Build.0 = Debug|ARM64 + {88DE1C8B-C13E-41C9-BE8A-0B396AB9B33C}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {88DE1C8B-C13E-41C9-BE8A-0B396AB9B33C}.Debug|ARM64.Build.0 = Debug|ARM64 + {041FE80B-1F18-4CF6-90DD-59C690C11A32}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {041FE80B-1F18-4CF6-90DD-59C690C11A32}.Debug|ARM64.Build.0 = Debug|ARM64 + {823A3A7D-47CE-46A7-BEC6-87E16E61CCE7}.Release|ARM64.ActiveCfg = Release|ARM64 + {823A3A7D-47CE-46A7-BEC6-87E16E61CCE7}.Release|ARM64.Build.0 = Release|ARM64 + {DD1B17F5-27B3-4EC3-9F49-B8BCA0A07B4A}.Release|ARM64.ActiveCfg = Release|ARM64 + {DD1B17F5-27B3-4EC3-9F49-B8BCA0A07B4A}.Release|ARM64.Build.0 = Release|ARM64 + {12455A18-956A-4030-B1C2-4C3EA1A827AD}.Release|ARM64.ActiveCfg = Release|ARM64 + {12455A18-956A-4030-B1C2-4C3EA1A827AD}.Release|ARM64.Build.0 = Release|ARM64 + {4514674D-F69E-4C3B-902F-23FB5F04DB40}.Release|ARM64.ActiveCfg = Release|ARM64 + {4514674D-F69E-4C3B-902F-23FB5F04DB40}.Release|ARM64.Build.0 = Release|ARM64 + {D8EF524D-29CB-4721-8EBE-1A049ECE53A2}.Release|ARM64.ActiveCfg = Release|ARM64 + {D8EF524D-29CB-4721-8EBE-1A049ECE53A2}.Release|ARM64.Build.0 = Release|ARM64 + {88DE1C8B-C13E-41C9-BE8A-0B396AB9B33C}.Release|ARM64.ActiveCfg = Release|ARM64 + {88DE1C8B-C13E-41C9-BE8A-0B396AB9B33C}.Release|ARM64.Build.0 = Release|ARM64 + {041FE80B-1F18-4CF6-90DD-59C690C11A32}.Release|ARM64.ActiveCfg = Release|ARM64 + {041FE80B-1F18-4CF6-90DD-59C690C11A32}.Release|ARM64.Build.0 = Release|ARM64 {823A3A7D-47CE-46A7-BEC6-87E16E61CCE7}.Debug|Win32.ActiveCfg = Debug|Win32 {823A3A7D-47CE-46A7-BEC6-87E16E61CCE7}.Debug|Win32.Build.0 = Debug|Win32 {823A3A7D-47CE-46A7-BEC6-87E16E61CCE7}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/wia/wiadriverex/errhandler/errhandler.vcxproj b/wia/wiadriverex/errhandler/errhandler.vcxproj index 054b4828..0e51f3e2 100644 --- a/wia/wiadriverex/errhandler/errhandler.vcxproj +++ b/wia/wiadriverex/errhandler/errhandler.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ errhandler + + errhandler + errhandler + + errhandler + errhandler @@ -93,12 +129,24 @@ _DllMainCRTStartup + + + _DllMainCRTStartup@12 + _DllMainCRTStartup + + _DllMainCRTStartup@12 _DllMainCRTStartup + + + _DllMainCRTStartup@12 + _DllMainCRTStartup + + _DllMainCRTStartup@12 @@ -132,6 +180,27 @@ DLLExports.def + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(DDK_INC_PATH) + + + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(DDK_INC_PATH) + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(DDK_INC_PATH) + + + %(AdditionalDependencies);wiaguid.lib;ADVAPI32.lib;KERNEL32.lib;user32.lib;oleaut32.lib;ole32.lib;uuid.lib + %(AdditionalOptions) /ignore:4070 + DLLExports.def + + %(PreprocessorDefinitions);UNICODE;_UNICODE @@ -153,6 +222,27 @@ DLLExports.def + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(DDK_INC_PATH) + + + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(DDK_INC_PATH) + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(DDK_INC_PATH) + + + %(AdditionalDependencies);wiaguid.lib;ADVAPI32.lib;KERNEL32.lib;user32.lib;oleaut32.lib;ole32.lib;uuid.lib + %(AdditionalOptions) /ignore:4070 + DLLExports.def + + %(PreprocessorDefinitions);UNICODE;_UNICODE @@ -212,4 +302,4 @@ - \ No newline at end of file + diff --git a/wia/wiadriverex/imgfilter/imgfilter.vcxproj b/wia/wiadriverex/imgfilter/imgfilter.vcxproj index 19b9ae28..d4f80e3d 100644 --- a/wia/wiadriverex/imgfilter/imgfilter.vcxproj +++ b/wia/wiadriverex/imgfilter/imgfilter.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + False + Desktop + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + True + Desktop + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ imgfilter + + imgfilter + imgfilter + + imgfilter + imgfilter @@ -93,12 +129,24 @@ _DllMainCRTStartup + + + _DllMainCRTStartup@12 + _DllMainCRTStartup + + _DllMainCRTStartup@12 _DllMainCRTStartup + + + _DllMainCRTStartup@12 + _DllMainCRTStartup + + _DllMainCRTStartup@12 @@ -132,6 +180,27 @@ DLLExports.def + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(SDK_INC_PATH)\gdiplus;$(DDK_INC_PATH) + + + /Wv:18 %(AdditionalOptions) + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(SDK_INC_PATH)\gdiplus;$(DDK_INC_PATH) + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(SDK_INC_PATH)\gdiplus;$(DDK_INC_PATH) + + + %(AdditionalDependencies);wiaguid.lib;ADVAPI32.lib;KERNEL32.lib;user32.lib;oleaut32.lib;ole32.lib;uuid.lib;gdiplus.lib + DLLExports.def + + %(PreprocessorDefinitions);UNICODE;_UNICODE @@ -153,6 +222,27 @@ DLLExports.def + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(SDK_INC_PATH)\gdiplus;$(DDK_INC_PATH) + + + /Wv:18 %(AdditionalOptions) + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(SDK_INC_PATH)\gdiplus;$(DDK_INC_PATH) + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(SDK_INC_PATH)\gdiplus;$(DDK_INC_PATH) + + + %(AdditionalDependencies);wiaguid.lib;ADVAPI32.lib;KERNEL32.lib;user32.lib;oleaut32.lib;ole32.lib;uuid.lib;gdiplus.lib + DLLExports.def + + %(PreprocessorDefinitions);UNICODE;_UNICODE @@ -212,4 +302,4 @@ - \ No newline at end of file + diff --git a/wia/wiadriverex/segfilter/segfilter.vcxproj b/wia/wiadriverex/segfilter/segfilter.vcxproj index ff4321ca..0a569bc6 100644 --- a/wia/wiadriverex/segfilter/segfilter.vcxproj +++ b/wia/wiadriverex/segfilter/segfilter.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ segfilter + + segfilter + segfilter + + segfilter + segfilter @@ -93,12 +129,24 @@ _DllMainCRTStartup + + + _DllMainCRTStartup@12 + _DllMainCRTStartup + + _DllMainCRTStartup@12 _DllMainCRTStartup + + + _DllMainCRTStartup@12 + _DllMainCRTStartup + + _DllMainCRTStartup@12 @@ -131,6 +179,26 @@ DLLExports.def + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(DDK_INC_PATH) + + + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(DDK_INC_PATH) + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(DDK_INC_PATH) + + + %(AdditionalDependencies);wiaguid.lib;ADVAPI32.lib;KERNEL32.lib;user32.lib;oleaut32.lib;ole32.lib;uuid.lib + DLLExports.def + + %(PreprocessorDefinitions);UNICODE;_UNICODE @@ -151,6 +219,26 @@ DLLExports.def + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(DDK_INC_PATH) + + + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(DDK_INC_PATH) + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(DDK_INC_PATH) + + + %(AdditionalDependencies);wiaguid.lib;ADVAPI32.lib;KERNEL32.lib;user32.lib;oleaut32.lib;ole32.lib;uuid.lib + DLLExports.def + + %(PreprocessorDefinitions);UNICODE;_UNICODE @@ -208,4 +296,4 @@ - \ No newline at end of file + diff --git a/wia/wiadriverex/uiext2/uiext2.vcxproj b/wia/wiadriverex/uiext2/uiext2.vcxproj index b9baba93..7b1f83d8 100644 --- a/wia/wiadriverex/uiext2/uiext2.vcxproj +++ b/wia/wiadriverex/uiext2/uiext2.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -78,9 +108,15 @@ uiext2 + + uiext2 + uiext2 + + uiext2 + uiext2 @@ -93,12 +129,24 @@ _DllMainCRTStartup + + + _DllMainCRTStartup@12 + _DllMainCRTStartup + + _DllMainCRTStartup@12 _DllMainCRTStartup + + + _DllMainCRTStartup@12 + _DllMainCRTStartup + + _DllMainCRTStartup@12 @@ -131,6 +179,26 @@ DLLExports.def + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(DDK_INC_PATH) + + + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(DDK_INC_PATH) + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(DDK_INC_PATH) + + + %(AdditionalDependencies);wiaguid.lib;ADVAPI32.lib;KERNEL32.lib;user32.lib;oleaut32.lib;ole32.lib;uuid.lib;shell32.lib;shlwapi.lib + DLLExports.def + + %(PreprocessorDefinitions);UNICODE;_UNICODE @@ -151,6 +219,26 @@ DLLExports.def + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(DDK_INC_PATH) + + + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(DDK_INC_PATH) + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(DDK_INC_PATH) + + + %(AdditionalDependencies);wiaguid.lib;ADVAPI32.lib;KERNEL32.lib;user32.lib;oleaut32.lib;ole32.lib;uuid.lib;shell32.lib;shlwapi.lib + DLLExports.def + + %(PreprocessorDefinitions);UNICODE;_UNICODE @@ -208,4 +296,4 @@ - \ No newline at end of file + diff --git a/wia/wiadriverex/usd/wiadriverex.vcxproj b/wia/wiadriverex/usd/wiadriverex.vcxproj index 50129b85..f9d966c6 100644 --- a/wia/wiadriverex/usd/wiadriverex.vcxproj +++ b/wia/wiadriverex/usd/wiadriverex.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + False + Desktop + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + True + Desktop + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -85,9 +115,15 @@ wiadriverex + + wiadriverex + wiadriverex + + wiadriverex + wiadriverex @@ -100,12 +136,24 @@ _DllMainCRTStartup + + + _DllMainCRTStartup@12 + _DllMainCRTStartup + + _DllMainCRTStartup@12 _DllMainCRTStartup + + + _DllMainCRTStartup@12 + _DllMainCRTStartup + + _DllMainCRTStartup@12 @@ -139,6 +187,27 @@ wiadriverex.def + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(SDK_INC_PATH)\gdiplus;$(DDK_INC_PATH) + + + /Wv:18 %(AdditionalOptions) + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(SDK_INC_PATH)\gdiplus;$(DDK_INC_PATH) + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(SDK_INC_PATH)\gdiplus;$(DDK_INC_PATH) + + + %(AdditionalDependencies);wiaguid.lib;wiaservc.lib;gdiplus.lib;ADVAPI32.lib;GDI32.lib;KERNEL32.lib;user32.lib;oleaut32.lib;ole32.lib;uuid.lib;shlwapi.lib;sti.lib + wiadriverex.def + + %(PreprocessorDefinitions);UNICODE;_UNICODE @@ -160,6 +229,27 @@ wiadriverex.def + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(SDK_INC_PATH)\gdiplus;$(DDK_INC_PATH) + + + /Wv:18 %(AdditionalOptions) + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(SDK_INC_PATH)\gdiplus;$(DDK_INC_PATH) + + + %(PreprocessorDefinitions);UNICODE;_UNICODE + %(AdditionalIncludeDirectories);$(SDK_INC_PATH);$(SDK_INC_PATH)\gdiplus;$(DDK_INC_PATH) + + + %(AdditionalDependencies);wiaguid.lib;wiaservc.lib;gdiplus.lib;ADVAPI32.lib;GDI32.lib;KERNEL32.lib;user32.lib;oleaut32.lib;ole32.lib;uuid.lib;shlwapi.lib;sti.lib + wiadriverex.def + + %(PreprocessorDefinitions);UNICODE;_UNICODE @@ -222,4 +312,4 @@ - \ No newline at end of file + diff --git a/wmi/wmiacpi/acpimof.vcxproj b/wmi/wmiacpi/acpimof.vcxproj index 2d4225e2..c9e224a1 100644 --- a/wmi/wmiacpi/acpimof.vcxproj +++ b/wmi/wmiacpi/acpimof.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -34,6 +42,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + False + Windows Driver + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 True @@ -42,6 +58,14 @@ WindowsApplicationForDrivers10.0 DynamicLibrary + + Windows10 + True + Windows Driver + + WindowsApplicationForDrivers10.0 + DynamicLibrary + Windows10 False @@ -65,9 +89,15 @@ + + + + + + @@ -82,9 +112,15 @@ acpimof + + acpimof + acpimof + + acpimof + acpimof @@ -99,6 +135,14 @@ acpimof.def + + + true + + + acpimof.def + + true @@ -107,6 +151,14 @@ acpimof.def + + + true + + + acpimof.def + + true @@ -139,6 +191,18 @@ true + + + + + + + sha256 + + + true + + @@ -151,6 +215,18 @@ true + + + + + + + sha256 + + + true + + @@ -197,4 +273,4 @@ - \ No newline at end of file + diff --git a/wmi/wmiacpi/wmiacpi.sln b/wmi/wmiacpi/wmiacpi.sln index e8188eaf..7abfc357 100644 --- a/wmi/wmiacpi/wmiacpi.sln +++ b/wmi/wmiacpi/wmiacpi.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "acpimof", "acpimof.vcxproj" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F346FBD0-9A67-4761-B670-BA329B8BC97E}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {F346FBD0-9A67-4761-B670-BA329B8BC97E}.Debug|ARM64.Build.0 = Debug|ARM64 + {F346FBD0-9A67-4761-B670-BA329B8BC97E}.Release|ARM64.ActiveCfg = Release|ARM64 + {F346FBD0-9A67-4761-B670-BA329B8BC97E}.Release|ARM64.Build.0 = Release|ARM64 {F346FBD0-9A67-4761-B670-BA329B8BC97E}.Debug|Win32.ActiveCfg = Debug|Win32 {F346FBD0-9A67-4761-B670-BA329B8BC97E}.Debug|Win32.Build.0 = Debug|Win32 {F346FBD0-9A67-4761-B670-BA329B8BC97E}.Release|Win32.ActiveCfg = Release|Win32 diff --git a/wmi/wmisamp/WmiSamp.vcxproj b/wmi/wmisamp/WmiSamp.vcxproj index be36d0c6..1d2a654f 100644 --- a/wmi/wmisamp/WmiSamp.vcxproj +++ b/wmi/wmisamp/WmiSamp.vcxproj @@ -1,6 +1,14 @@ - + + + Debug + ARM64 + + + Release + ARM64 + Debug Win32 @@ -35,6 +43,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + False + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 True @@ -43,6 +59,14 @@ WindowsKernelModeDriver10.0 Driver + + Windows10 + True + Windows Driver + KMDF + WindowsKernelModeDriver10.0 + Driver + Windows10 False @@ -66,9 +90,15 @@ + + + + + + @@ -92,9 +122,15 @@ WmiSamp + + WmiSamp + WmiSamp + + WmiSamp + WmiSamp @@ -110,6 +146,15 @@ sha256 + + + + + + + sha256 + + @@ -119,6 +164,15 @@ sha256 + + + + + + + sha256 + + @@ -155,4 +209,4 @@ - \ No newline at end of file + diff --git a/wmi/wmisamp/wmisamp.sln b/wmi/wmisamp/wmisamp.sln index 2724504e..034134e4 100644 --- a/wmi/wmisamp/wmisamp.sln +++ b/wmi/wmisamp/wmisamp.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0 @@ -7,12 +7,18 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "WmiSamp", "WmiSamp.vcxproj" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|ARM64 = Debug|ARM64 + Release|ARM64 = Release|ARM64 Debug|Win32 = Debug|Win32 Release|Win32 = Release|Win32 Debug|x64 = Debug|x64 Release|x64 = Release|x64 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {126FE1F4-434C-496A-A52B-400BBB74AC3B}.Debug|ARM64.ActiveCfg = Debug|ARM64 + {126FE1F4-434C-496A-A52B-400BBB74AC3B}.Debug|ARM64.Build.0 = Debug|ARM64 + {126FE1F4-434C-496A-A52B-400BBB74AC3B}.Release|ARM64.ActiveCfg = Release|ARM64 + {126FE1F4-434C-496A-A52B-400BBB74AC3B}.Release|ARM64.Build.0 = Release|ARM64 {126FE1F4-434C-496A-A52B-400BBB74AC3B}.Debug|Win32.ActiveCfg = Debug|Win32 {126FE1F4-434C-496A-A52B-400BBB74AC3B}.Debug|Win32.Build.0 = Debug|Win32 {126FE1F4-434C-496A-A52B-400BBB74AC3B}.Release|Win32.ActiveCfg = Release|Win32 -- cgit v1.3.1 From d5569c08aa2818c6240744bb47a00f67f20fdb54 Mon Sep 17 00:00:00 2001 From: Adonais Romero Gonzalez Date: Mon, 1 Jul 2024 17:33:16 -0700 Subject: Standarize INF files enconding to UTF-16 (LE with BOM); renormalize files --- .gitattributes | 5 ++++- audio/Acx/Samples/AudioCodec/Driver/AudioCodec.inf | Bin 8526 -> 4123 bytes .../Source/Main/SimpleAudioSample.inx | Bin 15004 -> 7299 bytes .../TabletAudioSample/ComponentizedApoSample.inx | Bin 22624 -> 11119 bytes .../TabletAudioSample/ComponentizedAudioSample.inx | Bin 52952 -> 25853 bytes .../ComponentizedAudioSampleExtension.inx | Bin 13660 -> 6686 bytes avstream/avscamera/sys/avscamera.inx | Bin 25172 -> 12364 bytes avstream/avshws/avshws.inx | Bin 6028 -> 2905 bytes avstream/avssamp/avssamp.inx | Bin 3278 -> 1567 bytes bluetooth/bthecho/bthcli/sys/BthEchoSampleCli.inx | Bin 4570 -> 2206 bytes bluetooth/bthecho/bthsrv/sys/BthEchoSampleSrv.inx | Bin 4578 -> 2210 bytes bluetooth/serialhcibus/WDK/SerialBusWdk.inx | Bin 4732 -> 2277 bytes filesys/miniFilter/MetadataManager/fmm.inf | Bin 8292 -> 4012 bytes filesys/miniFilter/NameChanger/NameChanger.inf | Bin 9004 -> 4361 bytes filesys/miniFilter/avscan/avscan.inf | Bin 8858 -> 4274 bytes filesys/miniFilter/cancelSafe/cancelSafe.inf | Bin 8792 -> 4262 bytes filesys/miniFilter/cdo/cdo.inf | Bin 8270 -> 4004 bytes filesys/miniFilter/change/change.inf | Bin 7816 -> 3782 bytes filesys/miniFilter/ctx/ctx.inf | Bin 8252 -> 3993 bytes filesys/miniFilter/delete/delete.inf | Bin 8084 -> 3913 bytes filesys/miniFilter/minispy/minispy.inf | Bin 9920 -> 4817 bytes filesys/miniFilter/nullFilter/nullFilter.inf | Bin 7928 -> 3836 bytes filesys/miniFilter/passThrough/passThrough.inf | Bin 8116 -> 3930 bytes filesys/miniFilter/scanner/scanner.inf | Bin 8340 -> 4035 bytes filesys/miniFilter/simrep/simrep.inf | Bin 9280 -> 4496 bytes filesys/miniFilter/swapBuffers/swapBuffers.inf | Bin 8270 -> 4005 bytes .../osrfx2_DCHU_base/osrfx2_DCHU_base.inx | Bin 7898 -> 3827 bytes .../osrfx2_DCHU_component/osrfx2_DCHU_component.inx | Bin 3386 -> 1628 bytes .../osrfx2_DCHU_extension/osrfx2_DCHU_extension.inx | Bin 3020 -> 1455 bytes .../osrfx2_DCHU_component/osrfx2_DCHU_component.inx | Bin 3386 -> 1628 bytes .../osrfx2_DCHU_extension/osrfx2_DCHU_extension.inx | Bin 2994 -> 1442 bytes general/PLX9x5x/sys/pci9x5x.inx | Bin 5334 -> 2574 bytes .../SimpleMediaSourceDriver.inf | Bin 6768 -> 3283 bytes general/echo/kmdf/driver/AutoSync/echo.inx | Bin 4138 -> 1981 bytes general/echo/kmdf/driver/DriverSync/echo_2.inx | Bin 4272 -> 2047 bytes general/echo/umdf2/driver/AutoSync/echoum.inx | Bin 4596 -> 2198 bytes general/pcidrv/kmdf/genpci.inx | Bin 6258 -> 3028 bytes .../toaster/toastDrv/kmdf/bus/dynamic/dynambus.inx | Bin 4794 -> 2309 bytes .../toaster/toastDrv/kmdf/bus/static/statbus.inx | Bin 4696 -> 2260 bytes general/toaster/toastDrv/kmdf/filter/filter.inx | Bin 6262 -> 3016 bytes .../toastDrv/kmdf/func/featured/wdffeatured.inx | Bin 5076 -> 2442 bytes .../toaster/toastDrv/kmdf/func/simple/wdfsimple.inx | Bin 6070 -> 2935 bytes .../toaster/toastDrv/kmdf/toastmon/wdftoastmon.inx | Bin 3964 -> 1898 bytes general/toaster/umdf2/filter/generic/filterum.inx | Bin 4586 -> 2197 bytes .../toaster/umdf2/func/featured/wdffeaturedum.inx | Bin 4730 -> 2267 bytes general/toaster/umdf2/func/simple/wdfsimpleum.inx | Bin 4606 -> 2206 bytes gnss/gnssUmdf/gnssUmdf.inf | Bin 2672 -> 1275 bytes gpio/samples/simdevice/kmdf/simdevice.inx | Bin 3068 -> 1462 bytes gpio/samples/simdevice/umdf/simdeviceumdf.inx | Bin 3444 -> 1652 bytes gpio/samples/simgpio/simgpio.inx | Bin 3714 -> 1776 bytes gpio/samples/simgpio_i2c/simgpio_i2c.inx | Bin 3786 -> 1812 bytes hid/firefly/driver/firefly.inx | Bin 6552 -> 3155 bytes hid/hidusbfx2/sys/hidusbfx2.inx | Bin 7642 -> 3686 bytes hid/vhidmini2/driver/kmdf/vhidmini.inx | Bin 4072 -> 1945 bytes hid/vhidmini2/driver/umdf2/VhidminiUm.inx | Bin 4588 -> 2200 bytes input/kbfiltr/sys/kbfiltr.inx | Bin 4976 -> 2362 bytes input/moufiltr/moufiltr.inx | Bin 4952 -> 2350 bytes network/modem/fakemodem/mdmfake.inx | Bin 24280 -> 11875 bytes .../ndis/extension/samples/forward/msforwardext.inf | Bin 5048 -> 2442 bytes .../samples/passthrough/mspassthroughext.inf | Bin 5218 -> 2529 bytes network/ndis/filter/netlwf.inf | Bin 19952 -> 9749 bytes network/ndis/mux/driver/60/mux_mp.inf | Bin 7718 -> 3736 bytes network/ndis/mux/driver/60/muxp.inf | Bin 7380 -> 3564 bytes network/ndis/ndisprot/6x/sys/60/ndisprot60.inf | Bin 7168 -> 3475 bytes network/ndis/ndisprot/6x/sys/630/ndisprot630.inf | Bin 8974 -> 4363 bytes network/ndis/ndisprot_kmdf/60/ndisprot.inx | Bin 13478 -> 6557 bytes network/ndis/netvmini/6x/60/netvmini60.inf | Bin 6470 -> 3138 bytes network/ndis/netvmini/6x/620/netvmini620.inf | Bin 11196 -> 5460 bytes network/ndis/netvmini/6x/630/netvmini630.inf | Bin 12318 -> 6011 bytes network/ndis/netvmini/6x/680/netvmini680.inf | Bin 12314 -> 6010 bytes network/trans/inspect/sys/inspect.inf | Bin 3944 -> 1919 bytes network/trans/msnmntr/sys/msnmntr.inf | Bin 3172 -> 1538 bytes .../WDI/PLATFORM/WinInf/SDIO/x64/netrtwlans.inf | Bin 74380 -> 36123 bytes network/wwan/cxwmbclass/cxwmbclass/cxwmbclass.inf | Bin 8266 -> 4013 bytes .../windows-drivertemplate-nfc.inf | Bin 3316 -> 1595 bytes pofx/PEP/acpi/sampleacpipep.inx | Bin 4270 -> 2053 bytes .../SingleComp/SingleComponentSingleStateUm.inx | Bin 4262 -> 2040 bytes pofx/WDF/Driver/MultiComp/driver/WdfMultiComp.inx | Bin 3608 -> 1726 bytes .../SingleComp/SingleComponentFStateSample.inx | Bin 5090 -> 2456 bytes .../SampleMagneticStripeReaderDrv.inf | Bin 3040 -> 1458 bytes .../barcodescanner/SampleBarcodeScannerDrv.inf | Bin 2912 -> 1394 bytes prm/PrmFunc/prmfuncsample.inf | Bin 2780 -> 1334 bytes sd/miniport/sdhc/sdhc.inx | Bin 7856 -> 3752 bytes sensors/ADXL345Acc/ADXL345Acc.inx | Bin 4398 -> 2114 bytes sensors/Activity/Activity.inx | Bin 4250 -> 2038 bytes sensors/CustomSensors/CustomSensors.inx | Bin 4524 -> 2175 bytes sensors/Fusion/FusionSensor.inx | Bin 4458 -> 2142 bytes sensors/Pedometer/Pedometer.inx | Bin 4302 -> 2064 bytes sensors/SensorsComboDriver/SensorsComboDriver.inx | Bin 4746 -> 2289 bytes .../SimpleDeviceOrientationSensor.inx | Bin 5444 -> 2635 bytes serial/VirtualSerial2/ComPort/virtualserial2um.inx | Bin 6316 -> 3053 bytes serial/VirtualSerial2/FakeModem/fakemodem2um.inx | Bin 16818 -> 8209 bytes serial/serial/serial.inx | Bin 5586 -> 2696 bytes simbatt/func/simbatt.inx | Bin 3946 -> 1891 bytes smartcrd/pscr/pscr.inx | Bin 6898 -> 3322 bytes spb/SkeletonI2C/skeletoni2c.inx | Bin 3914 -> 1883 bytes spb/SpbTestTool/sys/spbtesttool.inx | Bin 4846 -> 2334 bytes storage/msdsm/src/SampleDSM.inf | Bin 4388 -> 2108 bytes thermal/simsensor/simsensor.inf | Bin 5570 -> 2689 bytes thermal/thermalclient/simtc.inf | Bin 3860 -> 1852 bytes .../DV-FailDriver-WDM/driver/defect_toastmon.inf | Bin 3674 -> 1765 bytes usb/UcmCxUcsi/UcmCxUcsi.inf | Bin 3940 -> 1896 bytes .../UcmTcpciCxClientSample.inf | Bin 3352 -> 1616 bytes .../UcmUcsiAcpiSample/UcmUcsiAcpiSample.inf | Bin 3250 -> 1563 bytes usb/kmdf_enumswitches/sys/kmdf_enumswitches.inx | Bin 5330 -> 2567 bytes usb/kmdf_fx2/driver/osrusbfx2.inx | Bin 7006 -> 3386 bytes usb/ufxclientsample/UfxClientSample.inx | Bin 4470 -> 2156 bytes usb/umdf2_fx2/driver/osrusbfx2um.inx | Bin 6012 -> 2903 bytes usb/usbsamp/sys/driver/usbsamp.inx | Bin 5820 -> 2812 bytes usb/wdf_osrfx2_lab/kmdf/step1/osrusbfx2.inx | Bin 5046 -> 2423 bytes usb/wdf_osrfx2_lab/kmdf/step2/osrusbfx2.inx | Bin 5042 -> 2422 bytes usb/wdf_osrfx2_lab/kmdf/step3/osrusbfx2.inx | Bin 5042 -> 2422 bytes usb/wdf_osrfx2_lab/kmdf/step4/osrusbfx2.inx | Bin 5042 -> 2422 bytes usb/wdf_osrfx2_lab/kmdf/step5/osrusbfx2.inx | Bin 5042 -> 2422 bytes .../IddSampleDriver/IddSampleDriver.inf | Bin 4198 -> 2026 bytes wia/ProdScan/ProdScan.inx | Bin 3786 -> 1825 bytes wia/microdrv/testmcro.inx | Bin 3292 -> 1580 bytes wia/wiadriverex/usd/WiaDriver.inx | Bin 7566 -> 3682 bytes wmi/wmisamp/wmisamp.inx | Bin 5212 -> 2501 bytes 119 files changed, 4 insertions(+), 1 deletion(-) (limited to 'prm') diff --git a/.gitattributes b/.gitattributes index 84b1bf11..a59c7386 100644 --- a/.gitattributes +++ b/.gitattributes @@ -24,6 +24,10 @@ *.vcxproj text eol=crlf *.xaml text eol=crlf +# Declare files that are encoded in UTF-16 +*.inf text diff working-tree-encoding=UTF-16LE-BOM eol=crlf +*.inx text diff working-tree-encoding=UTF-16LE-BOM eol=crlf + ############################################################################### # Set default behavior for command prompt diff. # @@ -32,4 +36,3 @@ # Note: This is only used by command line ############################################################################### *.cs diff=csharp - diff --git a/audio/Acx/Samples/AudioCodec/Driver/AudioCodec.inf b/audio/Acx/Samples/AudioCodec/Driver/AudioCodec.inf index 889f9bdb..0bc5fe23 100644 Binary files a/audio/Acx/Samples/AudioCodec/Driver/AudioCodec.inf and b/audio/Acx/Samples/AudioCodec/Driver/AudioCodec.inf differ diff --git a/audio/simpleaudiosample/Source/Main/SimpleAudioSample.inx b/audio/simpleaudiosample/Source/Main/SimpleAudioSample.inx index d0835f1f..db2b62c1 100644 Binary files a/audio/simpleaudiosample/Source/Main/SimpleAudioSample.inx and b/audio/simpleaudiosample/Source/Main/SimpleAudioSample.inx differ diff --git a/audio/sysvad/TabletAudioSample/ComponentizedApoSample.inx b/audio/sysvad/TabletAudioSample/ComponentizedApoSample.inx index 7c08f86a..2cda2dae 100644 Binary files a/audio/sysvad/TabletAudioSample/ComponentizedApoSample.inx and b/audio/sysvad/TabletAudioSample/ComponentizedApoSample.inx differ diff --git a/audio/sysvad/TabletAudioSample/ComponentizedAudioSample.inx b/audio/sysvad/TabletAudioSample/ComponentizedAudioSample.inx index 1c638273..c6655868 100644 Binary files a/audio/sysvad/TabletAudioSample/ComponentizedAudioSample.inx and b/audio/sysvad/TabletAudioSample/ComponentizedAudioSample.inx differ diff --git a/audio/sysvad/TabletAudioSample/ComponentizedAudioSampleExtension.inx b/audio/sysvad/TabletAudioSample/ComponentizedAudioSampleExtension.inx index 2ce2f6a0..7511017c 100644 Binary files a/audio/sysvad/TabletAudioSample/ComponentizedAudioSampleExtension.inx and b/audio/sysvad/TabletAudioSample/ComponentizedAudioSampleExtension.inx differ diff --git a/avstream/avscamera/sys/avscamera.inx b/avstream/avscamera/sys/avscamera.inx index f75da695..a7c58505 100644 Binary files a/avstream/avscamera/sys/avscamera.inx and b/avstream/avscamera/sys/avscamera.inx differ diff --git a/avstream/avshws/avshws.inx b/avstream/avshws/avshws.inx index 9409635d..a2d94aba 100644 Binary files a/avstream/avshws/avshws.inx and b/avstream/avshws/avshws.inx differ diff --git a/avstream/avssamp/avssamp.inx b/avstream/avssamp/avssamp.inx index c06925ea..0036dc50 100644 Binary files a/avstream/avssamp/avssamp.inx and b/avstream/avssamp/avssamp.inx differ diff --git a/bluetooth/bthecho/bthcli/sys/BthEchoSampleCli.inx b/bluetooth/bthecho/bthcli/sys/BthEchoSampleCli.inx index 6f326ff3..1002f10d 100644 Binary files a/bluetooth/bthecho/bthcli/sys/BthEchoSampleCli.inx and b/bluetooth/bthecho/bthcli/sys/BthEchoSampleCli.inx differ diff --git a/bluetooth/bthecho/bthsrv/sys/BthEchoSampleSrv.inx b/bluetooth/bthecho/bthsrv/sys/BthEchoSampleSrv.inx index 3079c6d0..ea9238e1 100644 Binary files a/bluetooth/bthecho/bthsrv/sys/BthEchoSampleSrv.inx and b/bluetooth/bthecho/bthsrv/sys/BthEchoSampleSrv.inx differ diff --git a/bluetooth/serialhcibus/WDK/SerialBusWdk.inx b/bluetooth/serialhcibus/WDK/SerialBusWdk.inx index 27f70ab6..813c52f1 100644 Binary files a/bluetooth/serialhcibus/WDK/SerialBusWdk.inx and b/bluetooth/serialhcibus/WDK/SerialBusWdk.inx differ diff --git a/filesys/miniFilter/MetadataManager/fmm.inf b/filesys/miniFilter/MetadataManager/fmm.inf index ad231a8c..63f0bd4b 100644 Binary files a/filesys/miniFilter/MetadataManager/fmm.inf and b/filesys/miniFilter/MetadataManager/fmm.inf differ diff --git a/filesys/miniFilter/NameChanger/NameChanger.inf b/filesys/miniFilter/NameChanger/NameChanger.inf index 7c0b2364..b4474bb1 100644 Binary files a/filesys/miniFilter/NameChanger/NameChanger.inf and b/filesys/miniFilter/NameChanger/NameChanger.inf differ diff --git a/filesys/miniFilter/avscan/avscan.inf b/filesys/miniFilter/avscan/avscan.inf index cfc9c9ab..8c1e329d 100644 Binary files a/filesys/miniFilter/avscan/avscan.inf and b/filesys/miniFilter/avscan/avscan.inf differ diff --git a/filesys/miniFilter/cancelSafe/cancelSafe.inf b/filesys/miniFilter/cancelSafe/cancelSafe.inf index 69d0ccf1..5367e66e 100644 Binary files a/filesys/miniFilter/cancelSafe/cancelSafe.inf and b/filesys/miniFilter/cancelSafe/cancelSafe.inf differ diff --git a/filesys/miniFilter/cdo/cdo.inf b/filesys/miniFilter/cdo/cdo.inf index cdac24d9..37af1d59 100644 Binary files a/filesys/miniFilter/cdo/cdo.inf and b/filesys/miniFilter/cdo/cdo.inf differ diff --git a/filesys/miniFilter/change/change.inf b/filesys/miniFilter/change/change.inf index e7da4250..6a1923d2 100644 Binary files a/filesys/miniFilter/change/change.inf and b/filesys/miniFilter/change/change.inf differ diff --git a/filesys/miniFilter/ctx/ctx.inf b/filesys/miniFilter/ctx/ctx.inf index 8edaf764..bc637613 100644 Binary files a/filesys/miniFilter/ctx/ctx.inf and b/filesys/miniFilter/ctx/ctx.inf differ diff --git a/filesys/miniFilter/delete/delete.inf b/filesys/miniFilter/delete/delete.inf index da348874..e0c8c04c 100644 Binary files a/filesys/miniFilter/delete/delete.inf and b/filesys/miniFilter/delete/delete.inf differ diff --git a/filesys/miniFilter/minispy/minispy.inf b/filesys/miniFilter/minispy/minispy.inf index 60eb8684..a368bd75 100644 Binary files a/filesys/miniFilter/minispy/minispy.inf and b/filesys/miniFilter/minispy/minispy.inf differ diff --git a/filesys/miniFilter/nullFilter/nullFilter.inf b/filesys/miniFilter/nullFilter/nullFilter.inf index c04e9f06..1fffa028 100644 Binary files a/filesys/miniFilter/nullFilter/nullFilter.inf and b/filesys/miniFilter/nullFilter/nullFilter.inf differ diff --git a/filesys/miniFilter/passThrough/passThrough.inf b/filesys/miniFilter/passThrough/passThrough.inf index 129a2ab6..f77c3e4c 100644 Binary files a/filesys/miniFilter/passThrough/passThrough.inf and b/filesys/miniFilter/passThrough/passThrough.inf differ diff --git a/filesys/miniFilter/scanner/scanner.inf b/filesys/miniFilter/scanner/scanner.inf index d7bf6256..b7c3ac9e 100644 Binary files a/filesys/miniFilter/scanner/scanner.inf and b/filesys/miniFilter/scanner/scanner.inf differ diff --git a/filesys/miniFilter/simrep/simrep.inf b/filesys/miniFilter/simrep/simrep.inf index 8eea42ce..76aa1f0c 100644 Binary files a/filesys/miniFilter/simrep/simrep.inf and b/filesys/miniFilter/simrep/simrep.inf differ diff --git a/filesys/miniFilter/swapBuffers/swapBuffers.inf b/filesys/miniFilter/swapBuffers/swapBuffers.inf index 0aab9452..e5acbdd3 100644 Binary files a/filesys/miniFilter/swapBuffers/swapBuffers.inf and b/filesys/miniFilter/swapBuffers/swapBuffers.inf differ diff --git a/general/DCHU/osrfx2_DCHU_base/osrfx2_DCHU_base/osrfx2_DCHU_base.inx b/general/DCHU/osrfx2_DCHU_base/osrfx2_DCHU_base/osrfx2_DCHU_base.inx index 39bd5468..eca5c5cc 100644 Binary files a/general/DCHU/osrfx2_DCHU_base/osrfx2_DCHU_base/osrfx2_DCHU_base.inx and b/general/DCHU/osrfx2_DCHU_base/osrfx2_DCHU_base/osrfx2_DCHU_base.inx differ diff --git a/general/DCHU/osrfx2_DCHU_extension_loose/osrfx2_DCHU_component/osrfx2_DCHU_component.inx b/general/DCHU/osrfx2_DCHU_extension_loose/osrfx2_DCHU_component/osrfx2_DCHU_component.inx index 045fc91f..cc9e43a9 100644 Binary files a/general/DCHU/osrfx2_DCHU_extension_loose/osrfx2_DCHU_component/osrfx2_DCHU_component.inx and b/general/DCHU/osrfx2_DCHU_extension_loose/osrfx2_DCHU_component/osrfx2_DCHU_component.inx differ diff --git a/general/DCHU/osrfx2_DCHU_extension_loose/osrfx2_DCHU_extension/osrfx2_DCHU_extension.inx b/general/DCHU/osrfx2_DCHU_extension_loose/osrfx2_DCHU_extension/osrfx2_DCHU_extension.inx index a762b235..d824d08b 100644 Binary files a/general/DCHU/osrfx2_DCHU_extension_loose/osrfx2_DCHU_extension/osrfx2_DCHU_extension.inx and b/general/DCHU/osrfx2_DCHU_extension_loose/osrfx2_DCHU_extension/osrfx2_DCHU_extension.inx differ diff --git a/general/DCHU/osrfx2_DCHU_extension_tight/osrfx2_DCHU_component/osrfx2_DCHU_component.inx b/general/DCHU/osrfx2_DCHU_extension_tight/osrfx2_DCHU_component/osrfx2_DCHU_component.inx index 045fc91f..cc9e43a9 100644 Binary files a/general/DCHU/osrfx2_DCHU_extension_tight/osrfx2_DCHU_component/osrfx2_DCHU_component.inx and b/general/DCHU/osrfx2_DCHU_extension_tight/osrfx2_DCHU_component/osrfx2_DCHU_component.inx differ diff --git a/general/DCHU/osrfx2_DCHU_extension_tight/osrfx2_DCHU_extension/osrfx2_DCHU_extension.inx b/general/DCHU/osrfx2_DCHU_extension_tight/osrfx2_DCHU_extension/osrfx2_DCHU_extension.inx index 17670efa..a8f2a505 100644 Binary files a/general/DCHU/osrfx2_DCHU_extension_tight/osrfx2_DCHU_extension/osrfx2_DCHU_extension.inx and b/general/DCHU/osrfx2_DCHU_extension_tight/osrfx2_DCHU_extension/osrfx2_DCHU_extension.inx differ diff --git a/general/PLX9x5x/sys/pci9x5x.inx b/general/PLX9x5x/sys/pci9x5x.inx index 8fdb2eea..0d98041d 100644 Binary files a/general/PLX9x5x/sys/pci9x5x.inx and b/general/PLX9x5x/sys/pci9x5x.inx differ diff --git a/general/SimpleMediaSource/SimpleMediaSourceDriver/SimpleMediaSourceDriver.inf b/general/SimpleMediaSource/SimpleMediaSourceDriver/SimpleMediaSourceDriver.inf index d9f05402..aa21c882 100644 Binary files a/general/SimpleMediaSource/SimpleMediaSourceDriver/SimpleMediaSourceDriver.inf and b/general/SimpleMediaSource/SimpleMediaSourceDriver/SimpleMediaSourceDriver.inf differ diff --git a/general/echo/kmdf/driver/AutoSync/echo.inx b/general/echo/kmdf/driver/AutoSync/echo.inx index cd83b6c0..60be19a8 100644 Binary files a/general/echo/kmdf/driver/AutoSync/echo.inx and b/general/echo/kmdf/driver/AutoSync/echo.inx differ diff --git a/general/echo/kmdf/driver/DriverSync/echo_2.inx b/general/echo/kmdf/driver/DriverSync/echo_2.inx index b4cf3c25..73987894 100644 Binary files a/general/echo/kmdf/driver/DriverSync/echo_2.inx and b/general/echo/kmdf/driver/DriverSync/echo_2.inx differ diff --git a/general/echo/umdf2/driver/AutoSync/echoum.inx b/general/echo/umdf2/driver/AutoSync/echoum.inx index 00320858..9962e6c2 100644 Binary files a/general/echo/umdf2/driver/AutoSync/echoum.inx and b/general/echo/umdf2/driver/AutoSync/echoum.inx differ diff --git a/general/pcidrv/kmdf/genpci.inx b/general/pcidrv/kmdf/genpci.inx index f8581414..1c474ca2 100644 Binary files a/general/pcidrv/kmdf/genpci.inx and b/general/pcidrv/kmdf/genpci.inx differ diff --git a/general/toaster/toastDrv/kmdf/bus/dynamic/dynambus.inx b/general/toaster/toastDrv/kmdf/bus/dynamic/dynambus.inx index f557b6e3..e42b1969 100644 Binary files a/general/toaster/toastDrv/kmdf/bus/dynamic/dynambus.inx and b/general/toaster/toastDrv/kmdf/bus/dynamic/dynambus.inx differ diff --git a/general/toaster/toastDrv/kmdf/bus/static/statbus.inx b/general/toaster/toastDrv/kmdf/bus/static/statbus.inx index 094bce09..8f433735 100644 Binary files a/general/toaster/toastDrv/kmdf/bus/static/statbus.inx and b/general/toaster/toastDrv/kmdf/bus/static/statbus.inx differ diff --git a/general/toaster/toastDrv/kmdf/filter/filter.inx b/general/toaster/toastDrv/kmdf/filter/filter.inx index 8a2ca006..31c6cf93 100644 Binary files a/general/toaster/toastDrv/kmdf/filter/filter.inx and b/general/toaster/toastDrv/kmdf/filter/filter.inx differ diff --git a/general/toaster/toastDrv/kmdf/func/featured/wdffeatured.inx b/general/toaster/toastDrv/kmdf/func/featured/wdffeatured.inx index b91edc1b..7310ceb2 100644 Binary files a/general/toaster/toastDrv/kmdf/func/featured/wdffeatured.inx and b/general/toaster/toastDrv/kmdf/func/featured/wdffeatured.inx differ diff --git a/general/toaster/toastDrv/kmdf/func/simple/wdfsimple.inx b/general/toaster/toastDrv/kmdf/func/simple/wdfsimple.inx index 549f20e1..203e251f 100644 Binary files a/general/toaster/toastDrv/kmdf/func/simple/wdfsimple.inx and b/general/toaster/toastDrv/kmdf/func/simple/wdfsimple.inx differ diff --git a/general/toaster/toastDrv/kmdf/toastmon/wdftoastmon.inx b/general/toaster/toastDrv/kmdf/toastmon/wdftoastmon.inx index 0c1a410b..384344c0 100644 Binary files a/general/toaster/toastDrv/kmdf/toastmon/wdftoastmon.inx and b/general/toaster/toastDrv/kmdf/toastmon/wdftoastmon.inx differ diff --git a/general/toaster/umdf2/filter/generic/filterum.inx b/general/toaster/umdf2/filter/generic/filterum.inx index e7e04b65..fad4882d 100644 Binary files a/general/toaster/umdf2/filter/generic/filterum.inx and b/general/toaster/umdf2/filter/generic/filterum.inx differ diff --git a/general/toaster/umdf2/func/featured/wdffeaturedum.inx b/general/toaster/umdf2/func/featured/wdffeaturedum.inx index 7b5f9c07..f93fcf91 100644 Binary files a/general/toaster/umdf2/func/featured/wdffeaturedum.inx and b/general/toaster/umdf2/func/featured/wdffeaturedum.inx differ diff --git a/general/toaster/umdf2/func/simple/wdfsimpleum.inx b/general/toaster/umdf2/func/simple/wdfsimpleum.inx index e07cf3a1..10f52074 100644 Binary files a/general/toaster/umdf2/func/simple/wdfsimpleum.inx and b/general/toaster/umdf2/func/simple/wdfsimpleum.inx differ diff --git a/gnss/gnssUmdf/gnssUmdf.inf b/gnss/gnssUmdf/gnssUmdf.inf index b7f3363e..e3815c9e 100644 Binary files a/gnss/gnssUmdf/gnssUmdf.inf and b/gnss/gnssUmdf/gnssUmdf.inf differ diff --git a/gpio/samples/simdevice/kmdf/simdevice.inx b/gpio/samples/simdevice/kmdf/simdevice.inx index c758f27a..cdb02c81 100644 Binary files a/gpio/samples/simdevice/kmdf/simdevice.inx and b/gpio/samples/simdevice/kmdf/simdevice.inx differ diff --git a/gpio/samples/simdevice/umdf/simdeviceumdf.inx b/gpio/samples/simdevice/umdf/simdeviceumdf.inx index 587cd604..1cfda2e7 100644 Binary files a/gpio/samples/simdevice/umdf/simdeviceumdf.inx and b/gpio/samples/simdevice/umdf/simdeviceumdf.inx differ diff --git a/gpio/samples/simgpio/simgpio.inx b/gpio/samples/simgpio/simgpio.inx index fd8a4c18..7cd926a1 100644 Binary files a/gpio/samples/simgpio/simgpio.inx and b/gpio/samples/simgpio/simgpio.inx differ diff --git a/gpio/samples/simgpio_i2c/simgpio_i2c.inx b/gpio/samples/simgpio_i2c/simgpio_i2c.inx index 7706cfbf..e57a67d3 100644 Binary files a/gpio/samples/simgpio_i2c/simgpio_i2c.inx and b/gpio/samples/simgpio_i2c/simgpio_i2c.inx differ diff --git a/hid/firefly/driver/firefly.inx b/hid/firefly/driver/firefly.inx index caab90fc..aec3a013 100644 Binary files a/hid/firefly/driver/firefly.inx and b/hid/firefly/driver/firefly.inx differ diff --git a/hid/hidusbfx2/sys/hidusbfx2.inx b/hid/hidusbfx2/sys/hidusbfx2.inx index f45b9708..b4944828 100644 Binary files a/hid/hidusbfx2/sys/hidusbfx2.inx and b/hid/hidusbfx2/sys/hidusbfx2.inx differ diff --git a/hid/vhidmini2/driver/kmdf/vhidmini.inx b/hid/vhidmini2/driver/kmdf/vhidmini.inx index e126977f..98ad43ec 100644 Binary files a/hid/vhidmini2/driver/kmdf/vhidmini.inx and b/hid/vhidmini2/driver/kmdf/vhidmini.inx differ diff --git a/hid/vhidmini2/driver/umdf2/VhidminiUm.inx b/hid/vhidmini2/driver/umdf2/VhidminiUm.inx index aa617a3f..92cdd4b9 100644 Binary files a/hid/vhidmini2/driver/umdf2/VhidminiUm.inx and b/hid/vhidmini2/driver/umdf2/VhidminiUm.inx differ diff --git a/input/kbfiltr/sys/kbfiltr.inx b/input/kbfiltr/sys/kbfiltr.inx index 1412bc67..c489caf0 100644 Binary files a/input/kbfiltr/sys/kbfiltr.inx and b/input/kbfiltr/sys/kbfiltr.inx differ diff --git a/input/moufiltr/moufiltr.inx b/input/moufiltr/moufiltr.inx index c3cf47c4..92aea951 100644 Binary files a/input/moufiltr/moufiltr.inx and b/input/moufiltr/moufiltr.inx differ diff --git a/network/modem/fakemodem/mdmfake.inx b/network/modem/fakemodem/mdmfake.inx index ea95a9ad..29629983 100644 Binary files a/network/modem/fakemodem/mdmfake.inx and b/network/modem/fakemodem/mdmfake.inx differ diff --git a/network/ndis/extension/samples/forward/msforwardext.inf b/network/ndis/extension/samples/forward/msforwardext.inf index 4af1b0fb..be4d37dc 100644 Binary files a/network/ndis/extension/samples/forward/msforwardext.inf and b/network/ndis/extension/samples/forward/msforwardext.inf differ diff --git a/network/ndis/extension/samples/passthrough/mspassthroughext.inf b/network/ndis/extension/samples/passthrough/mspassthroughext.inf index 8339e7c8..71ecfbe8 100644 Binary files a/network/ndis/extension/samples/passthrough/mspassthroughext.inf and b/network/ndis/extension/samples/passthrough/mspassthroughext.inf differ diff --git a/network/ndis/filter/netlwf.inf b/network/ndis/filter/netlwf.inf index e59b56fb..42a80912 100644 Binary files a/network/ndis/filter/netlwf.inf and b/network/ndis/filter/netlwf.inf differ diff --git a/network/ndis/mux/driver/60/mux_mp.inf b/network/ndis/mux/driver/60/mux_mp.inf index f216ac16..5c0944bb 100644 Binary files a/network/ndis/mux/driver/60/mux_mp.inf and b/network/ndis/mux/driver/60/mux_mp.inf differ diff --git a/network/ndis/mux/driver/60/muxp.inf b/network/ndis/mux/driver/60/muxp.inf index f9c4c04e..ea09e77d 100644 Binary files a/network/ndis/mux/driver/60/muxp.inf and b/network/ndis/mux/driver/60/muxp.inf differ diff --git a/network/ndis/ndisprot/6x/sys/60/ndisprot60.inf b/network/ndis/ndisprot/6x/sys/60/ndisprot60.inf index bae3936c..7022c0e6 100644 Binary files a/network/ndis/ndisprot/6x/sys/60/ndisprot60.inf and b/network/ndis/ndisprot/6x/sys/60/ndisprot60.inf differ diff --git a/network/ndis/ndisprot/6x/sys/630/ndisprot630.inf b/network/ndis/ndisprot/6x/sys/630/ndisprot630.inf index c5d7adb6..6a3e7da1 100644 Binary files a/network/ndis/ndisprot/6x/sys/630/ndisprot630.inf and b/network/ndis/ndisprot/6x/sys/630/ndisprot630.inf differ diff --git a/network/ndis/ndisprot_kmdf/60/ndisprot.inx b/network/ndis/ndisprot_kmdf/60/ndisprot.inx index ecd932c1..1c5762f1 100644 Binary files a/network/ndis/ndisprot_kmdf/60/ndisprot.inx and b/network/ndis/ndisprot_kmdf/60/ndisprot.inx differ diff --git a/network/ndis/netvmini/6x/60/netvmini60.inf b/network/ndis/netvmini/6x/60/netvmini60.inf index 63382e9b..31361685 100644 Binary files a/network/ndis/netvmini/6x/60/netvmini60.inf and b/network/ndis/netvmini/6x/60/netvmini60.inf differ diff --git a/network/ndis/netvmini/6x/620/netvmini620.inf b/network/ndis/netvmini/6x/620/netvmini620.inf index 4dc1c9b6..f2ece226 100644 Binary files a/network/ndis/netvmini/6x/620/netvmini620.inf and b/network/ndis/netvmini/6x/620/netvmini620.inf differ diff --git a/network/ndis/netvmini/6x/630/netvmini630.inf b/network/ndis/netvmini/6x/630/netvmini630.inf index eb7d61c8..40db5135 100644 Binary files a/network/ndis/netvmini/6x/630/netvmini630.inf and b/network/ndis/netvmini/6x/630/netvmini630.inf differ diff --git a/network/ndis/netvmini/6x/680/netvmini680.inf b/network/ndis/netvmini/6x/680/netvmini680.inf index 4160c520..5da91049 100644 Binary files a/network/ndis/netvmini/6x/680/netvmini680.inf and b/network/ndis/netvmini/6x/680/netvmini680.inf differ diff --git a/network/trans/inspect/sys/inspect.inf b/network/trans/inspect/sys/inspect.inf index cf7f7e76..1a1aa466 100644 Binary files a/network/trans/inspect/sys/inspect.inf and b/network/trans/inspect/sys/inspect.inf differ diff --git a/network/trans/msnmntr/sys/msnmntr.inf b/network/trans/msnmntr/sys/msnmntr.inf index 38589761..e3ec3563 100644 Binary files a/network/trans/msnmntr/sys/msnmntr.inf and b/network/trans/msnmntr/sys/msnmntr.inf differ diff --git a/network/wlan/WDI/PLATFORM/WinInf/SDIO/x64/netrtwlans.inf b/network/wlan/WDI/PLATFORM/WinInf/SDIO/x64/netrtwlans.inf index e7753ef3..4640bc85 100644 Binary files a/network/wlan/WDI/PLATFORM/WinInf/SDIO/x64/netrtwlans.inf and b/network/wlan/WDI/PLATFORM/WinInf/SDIO/x64/netrtwlans.inf differ diff --git a/network/wwan/cxwmbclass/cxwmbclass/cxwmbclass.inf b/network/wwan/cxwmbclass/cxwmbclass/cxwmbclass.inf index 48f893c6..496e5c6a 100644 Binary files a/network/wwan/cxwmbclass/cxwmbclass/cxwmbclass.inf and b/network/wwan/cxwmbclass/cxwmbclass/cxwmbclass.inf differ diff --git a/nfc/NfcCxSample/windows-drivertemplate-nfc/windows-drivertemplate-nfc.inf b/nfc/NfcCxSample/windows-drivertemplate-nfc/windows-drivertemplate-nfc.inf index 5d1afa6e..38d5d022 100644 Binary files a/nfc/NfcCxSample/windows-drivertemplate-nfc/windows-drivertemplate-nfc.inf and b/nfc/NfcCxSample/windows-drivertemplate-nfc/windows-drivertemplate-nfc.inf differ diff --git a/pofx/PEP/acpi/sampleacpipep.inx b/pofx/PEP/acpi/sampleacpipep.inx index 9f93ad5b..94063ad0 100644 Binary files a/pofx/PEP/acpi/sampleacpipep.inx and b/pofx/PEP/acpi/sampleacpipep.inx differ diff --git a/pofx/UMDF2/Driver/SingleComp/SingleComponentSingleStateUm.inx b/pofx/UMDF2/Driver/SingleComp/SingleComponentSingleStateUm.inx index ffdf5414..2a8dffc1 100644 Binary files a/pofx/UMDF2/Driver/SingleComp/SingleComponentSingleStateUm.inx and b/pofx/UMDF2/Driver/SingleComp/SingleComponentSingleStateUm.inx differ diff --git a/pofx/WDF/Driver/MultiComp/driver/WdfMultiComp.inx b/pofx/WDF/Driver/MultiComp/driver/WdfMultiComp.inx index 4642ce27..5bd9ee1c 100644 Binary files a/pofx/WDF/Driver/MultiComp/driver/WdfMultiComp.inx and b/pofx/WDF/Driver/MultiComp/driver/WdfMultiComp.inx differ diff --git a/pofx/WDF/Driver/SingleComp/SingleComponentFStateSample.inx b/pofx/WDF/Driver/SingleComp/SingleComponentFStateSample.inx index adaa2411..7f99b48c 100644 Binary files a/pofx/WDF/Driver/SingleComp/SingleComponentFStateSample.inx and b/pofx/WDF/Driver/SingleComp/SingleComponentFStateSample.inx differ diff --git a/pos/drivers/MagneticStripeReader/SampleMagneticStripeReaderDrv.inf b/pos/drivers/MagneticStripeReader/SampleMagneticStripeReaderDrv.inf index 1dbdcc58..94a9bd03 100644 Binary files a/pos/drivers/MagneticStripeReader/SampleMagneticStripeReaderDrv.inf and b/pos/drivers/MagneticStripeReader/SampleMagneticStripeReaderDrv.inf differ diff --git a/pos/drivers/barcodescanner/SampleBarcodeScannerDrv.inf b/pos/drivers/barcodescanner/SampleBarcodeScannerDrv.inf index 28a173ea..835a550a 100644 Binary files a/pos/drivers/barcodescanner/SampleBarcodeScannerDrv.inf and b/pos/drivers/barcodescanner/SampleBarcodeScannerDrv.inf differ diff --git a/prm/PrmFunc/prmfuncsample.inf b/prm/PrmFunc/prmfuncsample.inf index bdd78384..f583ca59 100644 Binary files a/prm/PrmFunc/prmfuncsample.inf and b/prm/PrmFunc/prmfuncsample.inf differ diff --git a/sd/miniport/sdhc/sdhc.inx b/sd/miniport/sdhc/sdhc.inx index 50026a87..379978b1 100644 Binary files a/sd/miniport/sdhc/sdhc.inx and b/sd/miniport/sdhc/sdhc.inx differ diff --git a/sensors/ADXL345Acc/ADXL345Acc.inx b/sensors/ADXL345Acc/ADXL345Acc.inx index 73fd9d97..a2f05fb6 100644 Binary files a/sensors/ADXL345Acc/ADXL345Acc.inx and b/sensors/ADXL345Acc/ADXL345Acc.inx differ diff --git a/sensors/Activity/Activity.inx b/sensors/Activity/Activity.inx index 5d111d86..7570a42c 100644 Binary files a/sensors/Activity/Activity.inx and b/sensors/Activity/Activity.inx differ diff --git a/sensors/CustomSensors/CustomSensors.inx b/sensors/CustomSensors/CustomSensors.inx index 86438b0d..ff288b6f 100644 Binary files a/sensors/CustomSensors/CustomSensors.inx and b/sensors/CustomSensors/CustomSensors.inx differ diff --git a/sensors/Fusion/FusionSensor.inx b/sensors/Fusion/FusionSensor.inx index 44d590c4..21419ef8 100644 Binary files a/sensors/Fusion/FusionSensor.inx and b/sensors/Fusion/FusionSensor.inx differ diff --git a/sensors/Pedometer/Pedometer.inx b/sensors/Pedometer/Pedometer.inx index 91a304bf..16a752c2 100644 Binary files a/sensors/Pedometer/Pedometer.inx and b/sensors/Pedometer/Pedometer.inx differ diff --git a/sensors/SensorsComboDriver/SensorsComboDriver.inx b/sensors/SensorsComboDriver/SensorsComboDriver.inx index 699be4de..00c1eebf 100644 Binary files a/sensors/SensorsComboDriver/SensorsComboDriver.inx and b/sensors/SensorsComboDriver/SensorsComboDriver.inx differ diff --git a/sensors/SimpleDeviceOrientationSensor/SimpleDeviceOrientationSensor.inx b/sensors/SimpleDeviceOrientationSensor/SimpleDeviceOrientationSensor.inx index b2ccfaba..9ea73281 100644 Binary files a/sensors/SimpleDeviceOrientationSensor/SimpleDeviceOrientationSensor.inx and b/sensors/SimpleDeviceOrientationSensor/SimpleDeviceOrientationSensor.inx differ diff --git a/serial/VirtualSerial2/ComPort/virtualserial2um.inx b/serial/VirtualSerial2/ComPort/virtualserial2um.inx index 6679d7ab..f40e466d 100644 Binary files a/serial/VirtualSerial2/ComPort/virtualserial2um.inx and b/serial/VirtualSerial2/ComPort/virtualserial2um.inx differ diff --git a/serial/VirtualSerial2/FakeModem/fakemodem2um.inx b/serial/VirtualSerial2/FakeModem/fakemodem2um.inx index 235bdddd..ecb8f875 100644 Binary files a/serial/VirtualSerial2/FakeModem/fakemodem2um.inx and b/serial/VirtualSerial2/FakeModem/fakemodem2um.inx differ diff --git a/serial/serial/serial.inx b/serial/serial/serial.inx index d6bfc3bb..2b26d20b 100644 Binary files a/serial/serial/serial.inx and b/serial/serial/serial.inx differ diff --git a/simbatt/func/simbatt.inx b/simbatt/func/simbatt.inx index 5aab816a..c628040b 100644 Binary files a/simbatt/func/simbatt.inx and b/simbatt/func/simbatt.inx differ diff --git a/smartcrd/pscr/pscr.inx b/smartcrd/pscr/pscr.inx index ad9040fe..5e62eee6 100644 Binary files a/smartcrd/pscr/pscr.inx and b/smartcrd/pscr/pscr.inx differ diff --git a/spb/SkeletonI2C/skeletoni2c.inx b/spb/SkeletonI2C/skeletoni2c.inx index 056423f9..67ca6582 100644 Binary files a/spb/SkeletonI2C/skeletoni2c.inx and b/spb/SkeletonI2C/skeletoni2c.inx differ diff --git a/spb/SpbTestTool/sys/spbtesttool.inx b/spb/SpbTestTool/sys/spbtesttool.inx index baf82127..b52c4ccc 100644 Binary files a/spb/SpbTestTool/sys/spbtesttool.inx and b/spb/SpbTestTool/sys/spbtesttool.inx differ diff --git a/storage/msdsm/src/SampleDSM.inf b/storage/msdsm/src/SampleDSM.inf index a820c7ec..f0dbb34d 100644 Binary files a/storage/msdsm/src/SampleDSM.inf and b/storage/msdsm/src/SampleDSM.inf differ diff --git a/thermal/simsensor/simsensor.inf b/thermal/simsensor/simsensor.inf index 2b9a4394..f1aa5512 100644 Binary files a/thermal/simsensor/simsensor.inf and b/thermal/simsensor/simsensor.inf differ diff --git a/thermal/thermalclient/simtc.inf b/thermal/thermalclient/simtc.inf index 7c27c1d2..e015a83c 100644 Binary files a/thermal/thermalclient/simtc.inf and b/thermal/thermalclient/simtc.inf differ diff --git a/tools/dv/samples/DV-FailDriver-WDM/driver/defect_toastmon.inf b/tools/dv/samples/DV-FailDriver-WDM/driver/defect_toastmon.inf index edb7ee89..e577f586 100644 Binary files a/tools/dv/samples/DV-FailDriver-WDM/driver/defect_toastmon.inf and b/tools/dv/samples/DV-FailDriver-WDM/driver/defect_toastmon.inf differ diff --git a/usb/UcmCxUcsi/UcmCxUcsi.inf b/usb/UcmCxUcsi/UcmCxUcsi.inf index 661424db..e238ba06 100644 Binary files a/usb/UcmCxUcsi/UcmCxUcsi.inf and b/usb/UcmCxUcsi/UcmCxUcsi.inf differ diff --git a/usb/UcmTcpciCxClientSample/UcmTcpciCxClientSample.inf b/usb/UcmTcpciCxClientSample/UcmTcpciCxClientSample.inf index 5a526ab9..6ee60372 100644 Binary files a/usb/UcmTcpciCxClientSample/UcmTcpciCxClientSample.inf and b/usb/UcmTcpciCxClientSample/UcmTcpciCxClientSample.inf differ diff --git a/usb/UcmUcsiAcpiSample/UcmUcsiAcpiSample/UcmUcsiAcpiSample.inf b/usb/UcmUcsiAcpiSample/UcmUcsiAcpiSample/UcmUcsiAcpiSample.inf index c52e7865..39b3c16a 100644 Binary files a/usb/UcmUcsiAcpiSample/UcmUcsiAcpiSample/UcmUcsiAcpiSample.inf and b/usb/UcmUcsiAcpiSample/UcmUcsiAcpiSample/UcmUcsiAcpiSample.inf differ diff --git a/usb/kmdf_enumswitches/sys/kmdf_enumswitches.inx b/usb/kmdf_enumswitches/sys/kmdf_enumswitches.inx index d9d1366b..eb3c3c4b 100644 Binary files a/usb/kmdf_enumswitches/sys/kmdf_enumswitches.inx and b/usb/kmdf_enumswitches/sys/kmdf_enumswitches.inx differ diff --git a/usb/kmdf_fx2/driver/osrusbfx2.inx b/usb/kmdf_fx2/driver/osrusbfx2.inx index 1185053e..b30e6dc9 100644 Binary files a/usb/kmdf_fx2/driver/osrusbfx2.inx and b/usb/kmdf_fx2/driver/osrusbfx2.inx differ diff --git a/usb/ufxclientsample/UfxClientSample.inx b/usb/ufxclientsample/UfxClientSample.inx index 01c37a10..357bf788 100644 Binary files a/usb/ufxclientsample/UfxClientSample.inx and b/usb/ufxclientsample/UfxClientSample.inx differ diff --git a/usb/umdf2_fx2/driver/osrusbfx2um.inx b/usb/umdf2_fx2/driver/osrusbfx2um.inx index 737295b0..de08b136 100644 Binary files a/usb/umdf2_fx2/driver/osrusbfx2um.inx and b/usb/umdf2_fx2/driver/osrusbfx2um.inx differ diff --git a/usb/usbsamp/sys/driver/usbsamp.inx b/usb/usbsamp/sys/driver/usbsamp.inx index 57dc4bf3..1dfa8473 100644 Binary files a/usb/usbsamp/sys/driver/usbsamp.inx and b/usb/usbsamp/sys/driver/usbsamp.inx differ diff --git a/usb/wdf_osrfx2_lab/kmdf/step1/osrusbfx2.inx b/usb/wdf_osrfx2_lab/kmdf/step1/osrusbfx2.inx index 0fc45d1a..3d5fe521 100644 Binary files a/usb/wdf_osrfx2_lab/kmdf/step1/osrusbfx2.inx and b/usb/wdf_osrfx2_lab/kmdf/step1/osrusbfx2.inx differ diff --git a/usb/wdf_osrfx2_lab/kmdf/step2/osrusbfx2.inx b/usb/wdf_osrfx2_lab/kmdf/step2/osrusbfx2.inx index f7e12d74..4805bc9c 100644 Binary files a/usb/wdf_osrfx2_lab/kmdf/step2/osrusbfx2.inx and b/usb/wdf_osrfx2_lab/kmdf/step2/osrusbfx2.inx differ diff --git a/usb/wdf_osrfx2_lab/kmdf/step3/osrusbfx2.inx b/usb/wdf_osrfx2_lab/kmdf/step3/osrusbfx2.inx index f7e12d74..4805bc9c 100644 Binary files a/usb/wdf_osrfx2_lab/kmdf/step3/osrusbfx2.inx and b/usb/wdf_osrfx2_lab/kmdf/step3/osrusbfx2.inx differ diff --git a/usb/wdf_osrfx2_lab/kmdf/step4/osrusbfx2.inx b/usb/wdf_osrfx2_lab/kmdf/step4/osrusbfx2.inx index f7e12d74..4805bc9c 100644 Binary files a/usb/wdf_osrfx2_lab/kmdf/step4/osrusbfx2.inx and b/usb/wdf_osrfx2_lab/kmdf/step4/osrusbfx2.inx differ diff --git a/usb/wdf_osrfx2_lab/kmdf/step5/osrusbfx2.inx b/usb/wdf_osrfx2_lab/kmdf/step5/osrusbfx2.inx index f7e12d74..4805bc9c 100644 Binary files a/usb/wdf_osrfx2_lab/kmdf/step5/osrusbfx2.inx and b/usb/wdf_osrfx2_lab/kmdf/step5/osrusbfx2.inx differ diff --git a/video/IndirectDisplay/IddSampleDriver/IddSampleDriver.inf b/video/IndirectDisplay/IddSampleDriver/IddSampleDriver.inf index dc63f6ad..4edee6b8 100644 Binary files a/video/IndirectDisplay/IddSampleDriver/IddSampleDriver.inf and b/video/IndirectDisplay/IddSampleDriver/IddSampleDriver.inf differ diff --git a/wia/ProdScan/ProdScan.inx b/wia/ProdScan/ProdScan.inx index 6e8036ef..f27b79b9 100644 Binary files a/wia/ProdScan/ProdScan.inx and b/wia/ProdScan/ProdScan.inx differ diff --git a/wia/microdrv/testmcro.inx b/wia/microdrv/testmcro.inx index 86e3d220..3d084142 100644 Binary files a/wia/microdrv/testmcro.inx and b/wia/microdrv/testmcro.inx differ diff --git a/wia/wiadriverex/usd/WiaDriver.inx b/wia/wiadriverex/usd/WiaDriver.inx index 5d394e80..f527cde2 100644 Binary files a/wia/wiadriverex/usd/WiaDriver.inx and b/wia/wiadriverex/usd/WiaDriver.inx differ diff --git a/wmi/wmisamp/wmisamp.inx b/wmi/wmisamp/wmisamp.inx index bdf4152f..3b6250b9 100644 Binary files a/wmi/wmisamp/wmisamp.inx and b/wmi/wmisamp/wmisamp.inx differ -- cgit v1.3.1