[REACTOS] Fix some instances of DPRINTs with trailing whitespace before newlines.

This commit is contained in:
Hermès Bélusca-Maïto 2021-09-12 19:49:54 +02:00
parent d6c8fe7c37
commit 9b1edceae1
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0
27 changed files with 136 additions and 136 deletions

View file

@ -239,7 +239,7 @@ ScmCopyTree(
lpNameBuffer); lpNameBuffer);
} }
DPRINT("ScmCopyTree() done \n"); DPRINT("ScmCopyTree() done\n");
return ERROR_SUCCESS; return ERROR_SUCCESS;
} }

View file

@ -678,7 +678,7 @@ PeLdrAllocateDataTableEntry(
/* Insert this DTE to a list in the LPB */ /* Insert this DTE to a list in the LPB */
InsertTailList(ModuleListHead, &DataTableEntry->InLoadOrderLinks); InsertTailList(ModuleListHead, &DataTableEntry->InLoadOrderLinks);
TRACE("Inserting DTE %p, name='%.*S' DllBase=%p \n", DataTableEntry, TRACE("Inserting DTE %p, name='%.*S' DllBase=%p\n", DataTableEntry,
DataTableEntry->BaseDllName.Length / 2, DataTableEntry->BaseDllName.Length / 2,
VaToPa(DataTableEntry->BaseDllName.Buffer), VaToPa(DataTableEntry->BaseDllName.Buffer),
DataTableEntry->DllBase); DataTableEntry->DllBase);

View file

@ -324,7 +324,7 @@ MempSetupPaging(IN PFN_NUMBER StartPage,
if (KernelMapping) if (KernelMapping)
{ {
if (KernelPT[Page & 0x3ff].Valid) WARN("xxx already mapped \n"); if (KernelPT[Page & 0x3ff].Valid) WARN("KernelPT already mapped\n");
KernelPT[Page & 0x3ff].PageFrameNumber = Page; KernelPT[Page & 0x3ff].PageFrameNumber = Page;
KernelPT[Page & 0x3ff].Valid = (Page != 0); KernelPT[Page & 0x3ff].Valid = (Page != 0);
KernelPT[Page & 0x3ff].Write = (Page != 0); KernelPT[Page & 0x3ff].Write = (Page != 0);

View file

@ -540,8 +540,8 @@ WinLdrScanRegistry(IN OUT PLIST_ENTRY BootDriverListHead,
TRACE_CH(REACTOS, "RegQueryValue(): rc %d\n", (int)rc); TRACE_CH(REACTOS, "RegQueryValue(): rc %d\n", (int)rc);
if (rc != ERROR_SUCCESS) if (rc != ERROR_SUCCESS)
return; return;
TRACE_CH(REACTOS, "BufferSize: %d \n", (int)BufferSize); TRACE_CH(REACTOS, "BufferSize: %d\n", (int)BufferSize);
TRACE_CH(REACTOS, "GroupNameBuffer: '%S' \n", GroupNameBuffer); TRACE_CH(REACTOS, "GroupNameBuffer: '%S'\n", GroupNameBuffer);
/* Loop through each group */ /* Loop through each group */
GroupName = GroupNameBuffer; GroupName = GroupNameBuffer;
@ -580,18 +580,18 @@ WinLdrScanRegistry(IN OUT PLIST_ENTRY BootDriverListHead,
ValueSize = sizeof(ULONG); ValueSize = sizeof(ULONG);
rc = RegQueryValue(hDriverKey, L"Start", &ValueType, (PUCHAR)&StartValue, &ValueSize); rc = RegQueryValue(hDriverKey, L"Start", &ValueType, (PUCHAR)&StartValue, &ValueSize);
if (rc != ERROR_SUCCESS) StartValue = (ULONG)-1; if (rc != ERROR_SUCCESS) StartValue = (ULONG)-1;
//TRACE_CH(REACTOS, " Start: %x \n", (int)StartValue); //TRACE_CH(REACTOS, " Start: %x\n", (int)StartValue);
/* Read the Tag */ /* Read the Tag */
ValueSize = sizeof(ULONG); ValueSize = sizeof(ULONG);
rc = RegQueryValue(hDriverKey, L"Tag", &ValueType, (PUCHAR)&TagValue, &ValueSize); rc = RegQueryValue(hDriverKey, L"Tag", &ValueType, (PUCHAR)&TagValue, &ValueSize);
if (rc != ERROR_SUCCESS) TagValue = (ULONG)-1; if (rc != ERROR_SUCCESS) TagValue = (ULONG)-1;
//TRACE_CH(REACTOS, " Tag: %x \n", (int)TagValue); //TRACE_CH(REACTOS, " Tag: %x\n", (int)TagValue);
/* Read the driver's group */ /* Read the driver's group */
DriverGroupSize = sizeof(DriverGroup); DriverGroupSize = sizeof(DriverGroup);
rc = RegQueryValue(hDriverKey, L"Group", NULL, (PUCHAR)DriverGroup, &DriverGroupSize); rc = RegQueryValue(hDriverKey, L"Group", NULL, (PUCHAR)DriverGroup, &DriverGroupSize);
//TRACE_CH(REACTOS, " Group: '%S' \n", DriverGroup); //TRACE_CH(REACTOS, " Group: '%S'\n", DriverGroup);
/* Make sure it should be started */ /* Make sure it should be started */
if ((StartValue == 0) && if ((StartValue == 0) &&
@ -659,18 +659,18 @@ WinLdrScanRegistry(IN OUT PLIST_ENTRY BootDriverListHead,
ValueSize = sizeof(ULONG); ValueSize = sizeof(ULONG);
rc = RegQueryValue(hDriverKey, L"Start", &ValueType, (PUCHAR)&StartValue, &ValueSize); rc = RegQueryValue(hDriverKey, L"Start", &ValueType, (PUCHAR)&StartValue, &ValueSize);
if (rc != ERROR_SUCCESS) StartValue = (ULONG)-1; if (rc != ERROR_SUCCESS) StartValue = (ULONG)-1;
//TRACE_CH(REACTOS, " Start: %x \n", (int)StartValue); //TRACE_CH(REACTOS, " Start: %x\n", (int)StartValue);
/* Read the Tag */ /* Read the Tag */
ValueSize = sizeof(ULONG); ValueSize = sizeof(ULONG);
rc = RegQueryValue(hDriverKey, L"Tag", &ValueType, (PUCHAR)&TagValue, &ValueSize); rc = RegQueryValue(hDriverKey, L"Tag", &ValueType, (PUCHAR)&TagValue, &ValueSize);
if (rc != ERROR_SUCCESS) TagValue = (ULONG)-1; if (rc != ERROR_SUCCESS) TagValue = (ULONG)-1;
//TRACE_CH(REACTOS, " Tag: %x \n", (int)TagValue); //TRACE_CH(REACTOS, " Tag: %x\n", (int)TagValue);
/* Read the driver's group */ /* Read the driver's group */
DriverGroupSize = sizeof(DriverGroup); DriverGroupSize = sizeof(DriverGroup);
rc = RegQueryValue(hDriverKey, L"Group", NULL, (PUCHAR)DriverGroup, &DriverGroupSize); rc = RegQueryValue(hDriverKey, L"Group", NULL, (PUCHAR)DriverGroup, &DriverGroupSize);
//TRACE_CH(REACTOS, " Group: '%S' \n", DriverGroup); //TRACE_CH(REACTOS, " Group: '%S'\n", DriverGroup);
for (TagIndex = 1; TagIndex <= OrderList[0]; TagIndex++) for (TagIndex = 1; TagIndex <= OrderList[0]; TagIndex++)
{ {

View file

@ -375,7 +375,7 @@ InstallSysSetupInfComponents(VOID)
ARRAYSIZE(szNameBuffer), ARRAYSIZE(szNameBuffer),
NULL)) NULL))
{ {
FatalError("Error while trying to get component name \n"); FatalError("Error while trying to get component name\n");
return FALSE; return FALSE;
} }
@ -385,11 +385,11 @@ InstallSysSetupInfComponents(VOID)
ARRAYSIZE(szSectionBuffer), ARRAYSIZE(szSectionBuffer),
NULL)) NULL))
{ {
FatalError("Error while trying to get component install section \n"); FatalError("Error while trying to get component install section\n");
return FALSE; return FALSE;
} }
DPRINT("Trying to execute install section '%S' from '%S' \n", szSectionBuffer, szNameBuffer); DPRINT("Trying to execute install section '%S' from '%S'\n", szSectionBuffer, szNameBuffer);
hComponentInf = SetupOpenInfFileW(szNameBuffer, hComponentInf = SetupOpenInfFileW(szNameBuffer,
NULL, NULL,

View file

@ -68,7 +68,7 @@ CopyKey(HKEY hDstKey,
HKEY hDstSubKey; HKEY hDstSubKey;
HKEY hSrcSubKey; HKEY hSrcSubKey;
DPRINT ("CopyKey() called \n"); DPRINT ("CopyKey() called\n");
Error = RegQueryInfoKey(hSrcKey, Error = RegQueryInfoKey(hSrcKey,
NULL, NULL,
@ -268,7 +268,7 @@ CopyKey(HKEY hDstKey,
lpNameBuffer); lpNameBuffer);
} }
DPRINT("CopyKey() done \n"); DPRINT("CopyKey() done\n");
return TRUE; return TRUE;
#endif #endif

View file

@ -14,14 +14,14 @@ VOID
USB_BUSIFFN USB_BUSIFFN
USBI_InterfaceReference(IN PVOID BusContext) USBI_InterfaceReference(IN PVOID BusContext)
{ {
DPRINT("USBI_InterfaceReference \n"); DPRINT("USBI_InterfaceReference\n");
} }
VOID VOID
USB_BUSIFFN USB_BUSIFFN
USBI_InterfaceDereference(IN PVOID BusContext) USBI_InterfaceDereference(IN PVOID BusContext)
{ {
DPRINT("USBI_InterfaceDereference \n"); DPRINT("USBI_InterfaceDereference\n");
} }
/* USB port driver Interface functions */ /* USB port driver Interface functions */
@ -39,7 +39,7 @@ USBHI_CreateUsbDevice(IN PVOID BusContext,
PUSB_DEVICE_HANDLE deviceHandle = NULL; PUSB_DEVICE_HANDLE deviceHandle = NULL;
NTSTATUS Status; NTSTATUS Status;
DPRINT("USBHI_CreateUsbDevice: ... \n"); DPRINT("USBHI_CreateUsbDevice: ...\n");
PdoDevice = BusContext; PdoDevice = BusContext;
PdoExtension = PdoDevice->DeviceExtension; PdoExtension = PdoDevice->DeviceExtension;
@ -63,7 +63,7 @@ USBHI_InitializeUsbDevice(IN PVOID BusContext,
PDEVICE_OBJECT PdoDevice; PDEVICE_OBJECT PdoDevice;
PUSBPORT_RHDEVICE_EXTENSION PdoExtension; PUSBPORT_RHDEVICE_EXTENSION PdoExtension;
DPRINT("USBHI_InitializeUsbDevice \n"); DPRINT("USBHI_InitializeUsbDevice\n");
PdoDevice = BusContext; PdoDevice = BusContext;
PdoExtension = PdoDevice->DeviceExtension; PdoExtension = PdoDevice->DeviceExtension;
@ -175,7 +175,7 @@ USBHI_QueryDeviceInformation(IN PVOID BusContext,
ULONG ActualLength; ULONG ActualLength;
ULONG ix; ULONG ix;
DPRINT("USBHI_QueryDeviceInformation: ... \n"); DPRINT("USBHI_QueryDeviceInformation: ...\n");
*LenDataReturned = 0; *LenDataReturned = 0;
@ -431,7 +431,7 @@ USBHI_GetExtendedHubInformation(IN PVOID BusContext,
USB_PORT_STATUS_AND_CHANGE PortStatus; USB_PORT_STATUS_AND_CHANGE PortStatus;
ULONG PortAttrX; ULONG PortAttrX;
DPRINT("USBHI_GetExtendedHubInformation: ... \n"); DPRINT("USBHI_GetExtendedHubInformation: ...\n");
PdoDevice = BusContext; PdoDevice = BusContext;
PdoExtension = PdoDevice->DeviceExtension; PdoExtension = PdoDevice->DeviceExtension;
@ -530,7 +530,7 @@ USBHI_GetRootHubSymbolicName(IN PVOID BusContext,
PUNICODE_STRING InfoBuffer; PUNICODE_STRING InfoBuffer;
NTSTATUS Status; NTSTATUS Status;
DPRINT("USBHI_GetRootHubSymbolicName: ... \n"); DPRINT("USBHI_GetRootHubSymbolicName: ...\n");
PdoDevice = BusContext; PdoDevice = BusContext;
@ -559,7 +559,7 @@ USB_BUSIFFN
USBHI_GetDeviceBusContext(IN PVOID BusContext, USBHI_GetDeviceBusContext(IN PVOID BusContext,
IN PVOID DeviceHandle) IN PVOID DeviceHandle)
{ {
DPRINT1("USBHI_GetDeviceBusContext: UNIMPLEMENTED. FIXME. \n"); DPRINT1("USBHI_GetDeviceBusContext: UNIMPLEMENTED. FIXME.\n");
return NULL; return NULL;
} }
@ -596,7 +596,7 @@ USBHI_RootHubInitNotification(IN PVOID BusContext,
PUSBPORT_DEVICE_EXTENSION FdoExtension; PUSBPORT_DEVICE_EXTENSION FdoExtension;
KIRQL OldIrql; KIRQL OldIrql;
DPRINT("USBHI_RootHubInitNotification \n"); DPRINT("USBHI_RootHubInitNotification\n");
PdoDevice = BusContext; PdoDevice = BusContext;
PdoExtension = PdoDevice->DeviceExtension; PdoExtension = PdoDevice->DeviceExtension;
@ -619,7 +619,7 @@ USBHI_FlushTransfers(IN PVOID BusContext,
PDEVICE_OBJECT PdoDevice; PDEVICE_OBJECT PdoDevice;
PUSBPORT_RHDEVICE_EXTENSION PdoExtension; PUSBPORT_RHDEVICE_EXTENSION PdoExtension;
DPRINT("USBHI_FlushTransfers: ... \n"); DPRINT("USBHI_FlushTransfers: ...\n");
PdoDevice = BusContext; PdoDevice = BusContext;
PdoExtension = PdoDevice->DeviceExtension; PdoExtension = PdoDevice->DeviceExtension;
@ -633,7 +633,7 @@ USBHI_SetDeviceHandleData(IN PVOID BusContext,
IN PVOID DeviceHandle, IN PVOID DeviceHandle,
IN PDEVICE_OBJECT UsbDevicePdo) IN PDEVICE_OBJECT UsbDevicePdo)
{ {
DPRINT1("USBHI_SetDeviceHandleData: UNIMPLEMENTED. FIXME. \n"); DPRINT1("USBHI_SetDeviceHandleData: UNIMPLEMENTED. FIXME.\n");
} }
/* USB bus driver Interface functions */ /* USB bus driver Interface functions */
@ -644,7 +644,7 @@ USBDI_GetUSBDIVersion(IN PVOID BusContext,
OUT PUSBD_VERSION_INFORMATION VersionInfo, OUT PUSBD_VERSION_INFORMATION VersionInfo,
OUT PULONG HcdCapabilities) OUT PULONG HcdCapabilities)
{ {
DPRINT1("USBDI_GetUSBDIVersion: UNIMPLEMENTED. FIXME. \n"); DPRINT1("USBDI_GetUSBDIVersion: UNIMPLEMENTED. FIXME.\n");
} }
NTSTATUS NTSTATUS
@ -652,7 +652,7 @@ USB_BUSIFFN
USBDI_QueryBusTime(IN PVOID BusContext, USBDI_QueryBusTime(IN PVOID BusContext,
OUT PULONG CurrentFrame) OUT PULONG CurrentFrame)
{ {
DPRINT1("USBDI_QueryBusTime: UNIMPLEMENTED. FIXME. \n"); DPRINT1("USBDI_QueryBusTime: UNIMPLEMENTED. FIXME.\n");
return STATUS_SUCCESS; return STATUS_SUCCESS;
} }
@ -661,7 +661,7 @@ USB_BUSIFFN
USBDI_SubmitIsoOutUrb(IN PVOID BusContext, USBDI_SubmitIsoOutUrb(IN PVOID BusContext,
IN PURB Urb) IN PURB Urb)
{ {
DPRINT1("USBDI_SubmitIsoOutUrb: UNIMPLEMENTED. FIXME. \n"); DPRINT1("USBDI_SubmitIsoOutUrb: UNIMPLEMENTED. FIXME.\n");
return STATUS_SUCCESS; return STATUS_SUCCESS;
} }
@ -754,7 +754,7 @@ USBDI_IsDeviceHighSpeed(IN PVOID BusContext)
PUSBPORT_DEVICE_EXTENSION FdoExtension; PUSBPORT_DEVICE_EXTENSION FdoExtension;
PUSBPORT_REGISTRATION_PACKET Packet; PUSBPORT_REGISTRATION_PACKET Packet;
DPRINT("USBDI_IsDeviceHighSpeed: ... \n"); DPRINT("USBDI_IsDeviceHighSpeed: ...\n");
PdoDevice = BusContext; PdoDevice = BusContext;
PdoExtension = PdoDevice->DeviceExtension; PdoExtension = PdoDevice->DeviceExtension;
@ -773,7 +773,7 @@ USBDI_EnumLogEntry(IN PVOID BusContext,
IN ULONG P1, IN ULONG P1,
IN ULONG P2) IN ULONG P2)
{ {
DPRINT1("USBDI_EnumLogEntry: UNIMPLEMENTED. FIXME. \n"); DPRINT1("USBDI_EnumLogEntry: UNIMPLEMENTED. FIXME.\n");
return STATUS_SUCCESS; return STATUS_SUCCESS;
} }
@ -789,7 +789,7 @@ USBPORT_PdoQueryInterface(IN PDEVICE_OBJECT FdoDevice,
UNICODE_STRING GuidBuffer; UNICODE_STRING GuidBuffer;
NTSTATUS Status; NTSTATUS Status;
DPRINT("USBPORT_PdoQueryInterface: ... \n"); DPRINT("USBPORT_PdoQueryInterface: ...\n");
if (IsEqualGUIDAligned(IoStack->Parameters.QueryInterface.InterfaceType, if (IsEqualGUIDAligned(IoStack->Parameters.QueryInterface.InterfaceType,
&USB_BUS_INTERFACE_HUB_GUID)) &USB_BUS_INTERFACE_HUB_GUID))

View file

@ -256,7 +256,7 @@ USBPORT_SetRegistryKeyValue(IN PDEVICE_OBJECT DeviceObject,
HANDLE KeyHandle; HANDLE KeyHandle;
NTSTATUS Status; NTSTATUS Status;
DPRINT("USBPORT_SetRegistryKeyValue: ValueNameString - %S \n", DPRINT("USBPORT_SetRegistryKeyValue: ValueNameString - %S\n",
ValueNameString); ValueNameString);
if (UseDriverKey) if (UseDriverKey)
@ -416,7 +416,7 @@ USBPORT_GetSetConfigSpaceData(IN PDEVICE_OBJECT FdoDevice,
PUSBPORT_DEVICE_EXTENSION FdoExtension; PUSBPORT_DEVICE_EXTENSION FdoExtension;
ULONG BytesReadWrite; ULONG BytesReadWrite;
DPRINT("USBPORT_GetSetConfigSpaceData ... \n"); DPRINT("USBPORT_GetSetConfigSpaceData ...\n");
FdoExtension = FdoDevice->DeviceExtension; FdoExtension = FdoDevice->DeviceExtension;
@ -463,7 +463,7 @@ USBPORT_ReadWriteConfigSpace(IN PVOID MiniPortExtension,
PUSBPORT_DEVICE_EXTENSION FdoExtension; PUSBPORT_DEVICE_EXTENSION FdoExtension;
PDEVICE_OBJECT FdoDevice; PDEVICE_OBJECT FdoDevice;
DPRINT("USBPORT_ReadWriteConfigSpace: ... \n"); DPRINT("USBPORT_ReadWriteConfigSpace: ...\n");
//FdoExtension->MiniPortExt = (PVOID)((ULONG_PTR)FdoExtension + sizeof(USBPORT_DEVICE_EXTENSION)); //FdoExtension->MiniPortExt = (PVOID)((ULONG_PTR)FdoExtension + sizeof(USBPORT_DEVICE_EXTENSION));
FdoExtension = (PUSBPORT_DEVICE_EXTENSION)((ULONG_PTR)MiniPortExtension - FdoExtension = (PUSBPORT_DEVICE_EXTENSION)((ULONG_PTR)MiniPortExtension -
@ -595,7 +595,7 @@ USBPORT_SoftInterruptDpc(IN PRKDPC Dpc,
PDEVICE_OBJECT FdoDevice; PDEVICE_OBJECT FdoDevice;
PUSBPORT_DEVICE_EXTENSION FdoExtension; PUSBPORT_DEVICE_EXTENSION FdoExtension;
DPRINT_INT("USBPORT_SoftInterruptDpc: ... \n"); DPRINT_INT("USBPORT_SoftInterruptDpc: ...\n");
FdoDevice = DeferredContext; FdoDevice = DeferredContext;
FdoExtension = FdoDevice->DeviceExtension; FdoExtension = FdoDevice->DeviceExtension;
@ -613,7 +613,7 @@ USBPORT_SoftInterrupt(IN PDEVICE_OBJECT FdoDevice)
PUSBPORT_DEVICE_EXTENSION FdoExtension; PUSBPORT_DEVICE_EXTENSION FdoExtension;
LARGE_INTEGER DueTime = {{0, 0}}; LARGE_INTEGER DueTime = {{0, 0}};
DPRINT_INT("USBPORT_SoftInterrupt: ... \n"); DPRINT_INT("USBPORT_SoftInterrupt: ...\n");
FdoExtension = FdoDevice->DeviceExtension; FdoExtension = FdoDevice->DeviceExtension;
@ -645,11 +645,11 @@ USBPORT_InvalidateControllerHandler(IN PDEVICE_OBJECT FdoDevice,
switch (Type) switch (Type)
{ {
case USBPORT_INVALIDATE_CONTROLLER_RESET: case USBPORT_INVALIDATE_CONTROLLER_RESET:
DPRINT1("USBPORT_InvalidateControllerHandler: INVALIDATE_CONTROLLER_RESET UNIMPLEMENTED. FIXME. \n"); DPRINT1("USBPORT_InvalidateControllerHandler: INVALIDATE_CONTROLLER_RESET UNIMPLEMENTED. FIXME.\n");
break; break;
case USBPORT_INVALIDATE_CONTROLLER_SURPRISE_REMOVE: case USBPORT_INVALIDATE_CONTROLLER_SURPRISE_REMOVE:
DPRINT1("USBPORT_InvalidateControllerHandler: INVALIDATE_CONTROLLER_SURPRISE_REMOVE UNIMPLEMENTED. FIXME. \n"); DPRINT1("USBPORT_InvalidateControllerHandler: INVALIDATE_CONTROLLER_SURPRISE_REMOVE UNIMPLEMENTED. FIXME.\n");
break; break;
case USBPORT_INVALIDATE_CONTROLLER_SOFT_INTERRUPT: case USBPORT_INVALIDATE_CONTROLLER_SOFT_INTERRUPT:
@ -692,7 +692,7 @@ USBPORT_NotifyDoubleBuffer(IN PVOID MiniPortExtension,
IN PVOID Buffer, IN PVOID Buffer,
IN SIZE_T Length) IN SIZE_T Length)
{ {
DPRINT1("USBPORT_NotifyDoubleBuffer: UNIMPLEMENTED. FIXME. \n"); DPRINT1("USBPORT_NotifyDoubleBuffer: UNIMPLEMENTED. FIXME.\n");
return 0; return 0;
} }
@ -706,7 +706,7 @@ USBPORT_WorkerRequestDpc(IN PRKDPC Dpc,
PDEVICE_OBJECT FdoDevice; PDEVICE_OBJECT FdoDevice;
PUSBPORT_DEVICE_EXTENSION FdoExtension; PUSBPORT_DEVICE_EXTENSION FdoExtension;
DPRINT("USBPORT_WorkerRequestDpc: ... \n"); DPRINT("USBPORT_WorkerRequestDpc: ...\n");
FdoDevice = DeferredContext; FdoDevice = DeferredContext;
FdoExtension = FdoDevice->DeviceExtension; FdoExtension = FdoDevice->DeviceExtension;
@ -771,7 +771,7 @@ USBPORT_FlushDoneTransfers(IN PDEVICE_OBJECT FdoDevice)
KIRQL OldIrql; KIRQL OldIrql;
BOOLEAN IsHasTransfers; BOOLEAN IsHasTransfers;
DPRINT_CORE("USBPORT_FlushDoneTransfers: ... \n"); DPRINT_CORE("USBPORT_FlushDoneTransfers: ...\n");
FdoExtension = FdoDevice->DeviceExtension; FdoExtension = FdoDevice->DeviceExtension;
DoneTransferList = &FdoExtension->DoneTransferList; DoneTransferList = &FdoExtension->DoneTransferList;
@ -829,7 +829,7 @@ USBPORT_TransferFlushDpc(IN PRKDPC Dpc,
{ {
PDEVICE_OBJECT FdoDevice; PDEVICE_OBJECT FdoDevice;
DPRINT_CORE("USBPORT_TransferFlushDpc: ... \n"); DPRINT_CORE("USBPORT_TransferFlushDpc: ...\n");
FdoDevice = DeferredContext; FdoDevice = DeferredContext;
USBPORT_FlushDoneTransfers(FdoDevice); USBPORT_FlushDoneTransfers(FdoDevice);
} }
@ -869,7 +869,7 @@ USBPORT_DpcHandler(IN PDEVICE_OBJECT FdoDevice)
LIST_ENTRY List; LIST_ENTRY List;
LONG LockCounter; LONG LockCounter;
DPRINT_CORE("USBPORT_DpcHandler: ... \n"); DPRINT_CORE("USBPORT_DpcHandler: ...\n");
FdoExtension = FdoDevice->DeviceExtension; FdoExtension = FdoDevice->DeviceExtension;
@ -1113,7 +1113,7 @@ USBPORT_SignalWorkerThread(IN PDEVICE_OBJECT FdoDevice)
PUSBPORT_DEVICE_EXTENSION FdoExtension; PUSBPORT_DEVICE_EXTENSION FdoExtension;
KIRQL OldIrql; KIRQL OldIrql;
DPRINT_CORE("USBPORT_SignalWorkerThread ... \n"); DPRINT_CORE("USBPORT_SignalWorkerThread ...\n");
FdoExtension = FdoDevice->DeviceExtension; FdoExtension = FdoDevice->DeviceExtension;
@ -1134,7 +1134,7 @@ USBPORT_WorkerThreadHandler(IN PDEVICE_OBJECT FdoDevice)
LIST_ENTRY list; LIST_ENTRY list;
BOOLEAN Result; BOOLEAN Result;
DPRINT_CORE("USBPORT_WorkerThreadHandler: ... \n"); DPRINT_CORE("USBPORT_WorkerThreadHandler: ...\n");
FdoExtension = FdoDevice->DeviceExtension; FdoExtension = FdoDevice->DeviceExtension;
Packet = &FdoExtension->MiniPortInterface->Packet; Packet = &FdoExtension->MiniPortInterface->Packet;
@ -1281,7 +1281,7 @@ USBPORT_SynchronizeRootHubCallback(IN PDEVICE_OBJECT FdoDevice,
FdoExtension->Flags &= ~USBPORT_FLAG_RH_INIT_CALLBACK; FdoExtension->Flags &= ~USBPORT_FLAG_RH_INIT_CALLBACK;
InterlockedCompareExchange(&FdoExtension->RHInitCallBackLock, 0, 1); InterlockedCompareExchange(&FdoExtension->RHInitCallBackLock, 0, 1);
DPRINT("USBPORT_SynchronizeRootHubCallback: exit \n"); DPRINT("USBPORT_SynchronizeRootHubCallback: exit\n");
return; return;
} }
@ -1360,7 +1360,7 @@ USBPORT_SynchronizeRootHubCallback(IN PDEVICE_OBJECT FdoDevice,
FdoExtension->Flags &= ~USBPORT_FLAG_RH_INIT_CALLBACK; FdoExtension->Flags &= ~USBPORT_FLAG_RH_INIT_CALLBACK;
} }
DPRINT("USBPORT_SynchronizeRootHubCallback: exit \n"); DPRINT("USBPORT_SynchronizeRootHubCallback: exit\n");
} }
VOID VOID
@ -1373,7 +1373,7 @@ USBPORT_WorkerThread(IN PVOID StartContext)
LARGE_INTEGER NewTime; LARGE_INTEGER NewTime;
KIRQL OldIrql; KIRQL OldIrql;
DPRINT_CORE("USBPORT_WorkerThread ... \n"); DPRINT_CORE("USBPORT_WorkerThread ...\n");
FdoDevice = StartContext; FdoDevice = StartContext;
FdoExtension = FdoDevice->DeviceExtension; FdoExtension = FdoDevice->DeviceExtension;
@ -1400,7 +1400,7 @@ USBPORT_WorkerThread(IN PVOID StartContext)
KeAcquireSpinLock(&FdoExtension->WorkerThreadEventSpinLock, &OldIrql); KeAcquireSpinLock(&FdoExtension->WorkerThreadEventSpinLock, &OldIrql);
KeClearEvent(&FdoExtension->WorkerThreadEvent); KeClearEvent(&FdoExtension->WorkerThreadEvent);
KeReleaseSpinLock(&FdoExtension->WorkerThreadEventSpinLock, OldIrql); KeReleaseSpinLock(&FdoExtension->WorkerThreadEventSpinLock, OldIrql);
DPRINT_CORE("USBPORT_WorkerThread: run \n"); DPRINT_CORE("USBPORT_WorkerThread: run\n");
if (FdoExtension->MiniPortFlags & USBPORT_MPFLAG_INTERRUPTS_ENABLED) if (FdoExtension->MiniPortFlags & USBPORT_MPFLAG_INTERRUPTS_ENABLED)
{ {
@ -1429,7 +1429,7 @@ USBPORT_CreateWorkerThread(IN PDEVICE_OBJECT FdoDevice)
PUSBPORT_DEVICE_EXTENSION FdoExtension; PUSBPORT_DEVICE_EXTENSION FdoExtension;
NTSTATUS Status; NTSTATUS Status;
DPRINT("USBPORT_CreateWorkerThread ... \n"); DPRINT("USBPORT_CreateWorkerThread ...\n");
FdoExtension = FdoDevice->DeviceExtension; FdoExtension = FdoDevice->DeviceExtension;
@ -1457,7 +1457,7 @@ USBPORT_StopWorkerThread(IN PDEVICE_OBJECT FdoDevice)
PUSBPORT_DEVICE_EXTENSION FdoExtension; PUSBPORT_DEVICE_EXTENSION FdoExtension;
NTSTATUS Status; NTSTATUS Status;
DPRINT("USBPORT_StopWorkerThread ... \n"); DPRINT("USBPORT_StopWorkerThread ...\n");
FdoExtension = FdoDevice->DeviceExtension; FdoExtension = FdoDevice->DeviceExtension;
@ -1774,7 +1774,7 @@ USBPORT_FreeCommonBuffer(IN PDEVICE_OBJECT FdoDevice,
PDMA_ADAPTER DmaAdapter; PDMA_ADAPTER DmaAdapter;
PDMA_OPERATIONS DmaOperations; PDMA_OPERATIONS DmaOperations;
DPRINT("USBPORT_FreeCommonBuffer: ... \n"); DPRINT("USBPORT_FreeCommonBuffer: ...\n");
FdoExtension = FdoDevice->DeviceExtension; FdoExtension = FdoDevice->DeviceExtension;
@ -1797,7 +1797,7 @@ USBPORT_FindMiniPort(IN PDRIVER_OBJECT DriverObject)
PUSBPORT_MINIPORT_INTERFACE MiniPortInterface; PUSBPORT_MINIPORT_INTERFACE MiniPortInterface;
BOOLEAN IsFound = FALSE; BOOLEAN IsFound = FALSE;
DPRINT("USBPORT_FindMiniPort: ... \n"); DPRINT("USBPORT_FindMiniPort: ...\n");
KeAcquireSpinLock(&USBPORT_SpinLock, &OldIrql); KeAcquireSpinLock(&USBPORT_SpinLock, &OldIrql);
@ -1981,7 +1981,7 @@ USBPORT_Unload(IN PDRIVER_OBJECT DriverObject)
KeBugCheckEx(BUGCODE_USB_DRIVER, 1, 0, 0, 0); KeBugCheckEx(BUGCODE_USB_DRIVER, 1, 0, 0, 0);
} }
DPRINT1("USBPORT_Unload: UNIMPLEMENTED. FIXME. \n"); DPRINT1("USBPORT_Unload: UNIMPLEMENTED. FIXME.\n");
//MiniPortInterface->DriverUnload(DriverObject); // Call MiniPort _HCI_Unload //MiniPortInterface->DriverUnload(DriverObject); // Call MiniPort _HCI_Unload
} }
@ -2062,7 +2062,7 @@ USBPORT_AsyncTimerDpc(IN PRKDPC Dpc,
PUSBPORT_DEVICE_EXTENSION FdoExtension; PUSBPORT_DEVICE_EXTENSION FdoExtension;
PUSBPORT_ASYNC_CALLBACK_DATA AsyncCallbackData; PUSBPORT_ASYNC_CALLBACK_DATA AsyncCallbackData;
DPRINT("USBPORT_AsyncTimerDpc: ... \n"); DPRINT("USBPORT_AsyncTimerDpc: ...\n");
AsyncCallbackData = DeferredContext; AsyncCallbackData = DeferredContext;
FdoDevice = AsyncCallbackData->FdoDevice; FdoDevice = AsyncCallbackData->FdoDevice;
@ -2087,7 +2087,7 @@ USBPORT_RequestAsyncCallback(IN PVOID MiniPortExtension,
PUSBPORT_ASYNC_CALLBACK_DATA AsyncCallbackData; PUSBPORT_ASYNC_CALLBACK_DATA AsyncCallbackData;
LARGE_INTEGER DueTime = {{0, 0}}; LARGE_INTEGER DueTime = {{0, 0}};
DPRINT("USBPORT_RequestAsyncCallback: ... \n"); DPRINT("USBPORT_RequestAsyncCallback: ...\n");
FdoExtension = (PUSBPORT_DEVICE_EXTENSION)((ULONG_PTR)MiniPortExtension - FdoExtension = (PUSBPORT_DEVICE_EXTENSION)((ULONG_PTR)MiniPortExtension -
sizeof(USBPORT_DEVICE_EXTENSION)); sizeof(USBPORT_DEVICE_EXTENSION));
@ -2141,7 +2141,7 @@ USBPORT_GetMappedVirtualAddress(IN ULONG PhysicalAddress,
ULONG Offset; ULONG Offset;
ULONG_PTR VirtualAddress; ULONG_PTR VirtualAddress;
DPRINT_CORE("USBPORT_GetMappedVirtualAddress ... \n"); DPRINT_CORE("USBPORT_GetMappedVirtualAddress ...\n");
Endpoint = (PUSBPORT_ENDPOINT)((ULONG_PTR)MiniPortEndpoint - Endpoint = (PUSBPORT_ENDPOINT)((ULONG_PTR)MiniPortEndpoint -
sizeof(USBPORT_ENDPOINT)); sizeof(USBPORT_ENDPOINT));
@ -2168,7 +2168,7 @@ USBPORT_InvalidateEndpoint(IN PVOID MiniPortExtension,
PDEVICE_OBJECT FdoDevice; PDEVICE_OBJECT FdoDevice;
PUSBPORT_ENDPOINT Endpoint; PUSBPORT_ENDPOINT Endpoint;
DPRINT_CORE("USBPORT_InvalidateEndpoint: ... \n"); DPRINT_CORE("USBPORT_InvalidateEndpoint: ...\n");
FdoExtension = (PUSBPORT_DEVICE_EXTENSION)((ULONG_PTR)MiniPortExtension - FdoExtension = (PUSBPORT_DEVICE_EXTENSION)((ULONG_PTR)MiniPortExtension -
sizeof(USBPORT_DEVICE_EXTENSION)); sizeof(USBPORT_DEVICE_EXTENSION));
@ -2332,7 +2332,7 @@ USBPORT_MapTransfer(IN PDEVICE_OBJECT FdoDevice,
LIST_ENTRY List; LIST_ENTRY List;
PUSBPORT_TRANSFER transfer; PUSBPORT_TRANSFER transfer;
DPRINT_CORE("USBPORT_MapTransfer: ... \n"); DPRINT_CORE("USBPORT_MapTransfer: ...\n");
FdoExtension = FdoDevice->DeviceExtension; FdoExtension = FdoDevice->DeviceExtension;
DmaAdapter = FdoExtension->DmaAdapter; DmaAdapter = FdoExtension->DmaAdapter;
@ -2493,7 +2493,7 @@ USBPORT_FlushMapTransfers(IN PDEVICE_OBJECT FdoDevice)
NTSTATUS Status; NTSTATUS Status;
PDMA_OPERATIONS DmaOperations; PDMA_OPERATIONS DmaOperations;
DPRINT_CORE("USBPORT_FlushMapTransfers: ... \n"); DPRINT_CORE("USBPORT_FlushMapTransfers: ...\n");
FdoExtension = FdoDevice->DeviceExtension; FdoExtension = FdoDevice->DeviceExtension;
DmaOperations = FdoExtension->DmaAdapter->DmaOperations; DmaOperations = FdoExtension->DmaAdapter->DmaOperations;

View file

@ -77,7 +77,7 @@ START_TEST(RegQueryValueExW)
ret = RegQueryValueExW(NULL, NULL, &reserved, NULL, NULL, NULL); ret = RegQueryValueExW(NULL, NULL, &reserved, NULL, NULL, NULL);
ok(ret == ERROR_INVALID_PARAMETER, "RegQueryValueExW returned: %lx\n", ret); ok(ret == ERROR_INVALID_PARAMETER, "RegQueryValueExW returned: %lx\n", ret);
ok(GetLastError() == 0xdeadbeef, "RegQueryValueExW returned: %lx\n", GetLastError()); ok(GetLastError() == 0xdeadbeef, "RegQueryValueExW returned: %lx\n", GetLastError());
ok(reserved == 3, "Expected reserved=3, reserved is: %ld \n", reserved); ok(reserved == 3, "Expected reserved=3, reserved is: %ld\n", reserved);
/* NULL handle. NULL value. Reserved not NULL */ /* NULL handle. NULL value. Reserved not NULL */
type = 666; type = 666;
@ -88,8 +88,8 @@ START_TEST(RegQueryValueExW)
ok(ret == ERROR_INVALID_PARAMETER, "RegQueryValueExW returned: %lx\n", ret); ok(ret == ERROR_INVALID_PARAMETER, "RegQueryValueExW returned: %lx\n", ret);
ok(GetLastError() == 0xdeadbeef, "RegQueryValueExW returned: %lx\n", GetLastError()); ok(GetLastError() == 0xdeadbeef, "RegQueryValueExW returned: %lx\n", GetLastError());
ok(type == 666, "Expected untouched, Type was set with: %ld\n", type); ok(type == 666, "Expected untouched, Type was set with: %ld\n", type);
ok(size == 666, "Expected untouched, Size was set with: %ld \n", size); ok(size == 666, "Expected untouched, Size was set with: %ld\n", size);
ok(reserved == 3, "Expected reserved = 3, reserved is: %ld \n", reserved); ok(reserved == 3, "Expected reserved = 3, reserved is: %ld\n", reserved);
/* NULL handle. NULL value */ /* NULL handle. NULL value */
type = 666; type = 666;
@ -99,7 +99,7 @@ START_TEST(RegQueryValueExW)
ok(ret == ERROR_INVALID_HANDLE, "RegQueryValueExW returned: %lx\n", ret); ok(ret == ERROR_INVALID_HANDLE, "RegQueryValueExW returned: %lx\n", ret);
ok(GetLastError() == 0xdeadbeef, "RegQueryValueExW returned: %lx\n", GetLastError()); ok(GetLastError() == 0xdeadbeef, "RegQueryValueExW returned: %lx\n", GetLastError());
ok(type == 666, "Expected untouched, Type was set with: %ld\n", type); ok(type == 666, "Expected untouched, Type was set with: %ld\n", type);
ok(size == 666, "Expected untouched, Size was set with: %ld \n", size); ok(size == 666, "Expected untouched, Size was set with: %ld\n", size);
/* NULL handle . Inexistent value. Reserved not NULL */ /* NULL handle . Inexistent value. Reserved not NULL */
type = 666; type = 666;
@ -110,8 +110,8 @@ START_TEST(RegQueryValueExW)
ok(ret == ERROR_INVALID_PARAMETER, "RegQueryValueExW returned: %lx\n", ret); ok(ret == ERROR_INVALID_PARAMETER, "RegQueryValueExW returned: %lx\n", ret);
ok(GetLastError() == 0xdeadbeef, "RegQueryValueExW returned: %lx\n", GetLastError()); ok(GetLastError() == 0xdeadbeef, "RegQueryValueExW returned: %lx\n", GetLastError());
ok(type == 666, "Expected untouched, Type was set with: %ld\n", type); ok(type == 666, "Expected untouched, Type was set with: %ld\n", type);
ok(size == 666, "Expected untouched, Size was set with: %ld \n", size); ok(size == 666, "Expected untouched, Size was set with: %ld\n", size);
ok(reserved == 3, "Expected reserved = 3, reserved is: %ld \n", reserved); ok(reserved == 3, "Expected reserved = 3, reserved is: %ld\n", reserved);
/* NULL handle . Inexistent value. */ /* NULL handle . Inexistent value. */
type = 666; type = 666;
@ -121,7 +121,7 @@ START_TEST(RegQueryValueExW)
ok(ret == ERROR_INVALID_HANDLE, "RegQueryValueExW returned: %lx\n", ret); ok(ret == ERROR_INVALID_HANDLE, "RegQueryValueExW returned: %lx\n", ret);
ok(GetLastError() == 0xdeadbeef, "RegQueryValueExW returned: %lx\n", GetLastError()); ok(GetLastError() == 0xdeadbeef, "RegQueryValueExW returned: %lx\n", GetLastError());
ok(type == 666, "Expected untouched, Type was set with: %ld\n", type); ok(type == 666, "Expected untouched, Type was set with: %ld\n", type);
ok(size == 666, "Expected untouched, Size was set with: %ld \n", size); ok(size == 666, "Expected untouched, Size was set with: %ld\n", size);
/* NULL handle */ /* NULL handle */
type = 666; type = 666;
@ -131,7 +131,7 @@ START_TEST(RegQueryValueExW)
ok(ret == ERROR_INVALID_HANDLE, "RegQueryValueExW returned: %lx\n", ret); ok(ret == ERROR_INVALID_HANDLE, "RegQueryValueExW returned: %lx\n", ret);
ok(GetLastError() == 0xdeadbeef, "RegQueryValueExW returned: %lx\n", GetLastError()); ok(GetLastError() == 0xdeadbeef, "RegQueryValueExW returned: %lx\n", GetLastError());
ok(type == 666, "Expected untouched, Type was set with: %ld\n", type); ok(type == 666, "Expected untouched, Type was set with: %ld\n", type);
ok(size == 666, "Expected untouched, Size was set with: %ld \n", size); ok(size == 666, "Expected untouched, Size was set with: %ld\n", size);
/* INVALID handle. NULL value. Reserved not NULL */ /* INVALID handle. NULL value. Reserved not NULL */
type = 666; type = 666;
@ -142,8 +142,8 @@ START_TEST(RegQueryValueExW)
ok(ret == ERROR_INVALID_PARAMETER, "RegQueryValueExW returned: %lx\n", ret); ok(ret == ERROR_INVALID_PARAMETER, "RegQueryValueExW returned: %lx\n", ret);
ok(GetLastError() == 0xdeadbeef, "RegQueryValueExW returned: %lx\n", GetLastError()); ok(GetLastError() == 0xdeadbeef, "RegQueryValueExW returned: %lx\n", GetLastError());
ok(type == 666, "Expected untouched, Type was set with: %ld\n", type); ok(type == 666, "Expected untouched, Type was set with: %ld\n", type);
ok(size == 666, "Expected untouched, Size was set with: %ld \n", size); ok(size == 666, "Expected untouched, Size was set with: %ld\n", size);
ok(reserved == 3, "Expected reserved = 3, reserved is: %ld \n", reserved); ok(reserved == 3, "Expected reserved = 3, reserved is: %ld\n", reserved);
/* INVALID handle. NULL value.*/ /* INVALID handle. NULL value.*/
type = 666; type = 666;
@ -154,7 +154,7 @@ START_TEST(RegQueryValueExW)
ok(GetLastError() == 0xdeadbeef, "RegQueryValueExW returned: %lx\n", GetLastError()); ok(GetLastError() == 0xdeadbeef, "RegQueryValueExW returned: %lx\n", GetLastError());
ok(type == REG_NONE, "Expected REG_NONE, Type is: %ld\n", type); ok(type == REG_NONE, "Expected REG_NONE, Type is: %ld\n", type);
ok(size == 0, "Expected size = 0, size is: %ld\n", size); ok(size == 0, "Expected size = 0, size is: %ld\n", size);
ok(reserved == 3, "Expected reserved = 3, reserved is: %ld \n", reserved); ok(reserved == 3, "Expected reserved = 3, reserved is: %ld\n", reserved);
/* INVALID handle. Non-existent value. Reserved not NULL*/ /* INVALID handle. Non-existent value. Reserved not NULL*/
type = 666; type = 666;
@ -165,8 +165,8 @@ START_TEST(RegQueryValueExW)
ok(ret == ERROR_INVALID_PARAMETER, "RegQueryValueExW returned: %lx\n", ret); ok(ret == ERROR_INVALID_PARAMETER, "RegQueryValueExW returned: %lx\n", ret);
ok(GetLastError() == 0xdeadbeef, "RegQueryValueExW returned: %lx\n", GetLastError()); ok(GetLastError() == 0xdeadbeef, "RegQueryValueExW returned: %lx\n", GetLastError());
ok(type == 666, "Expected untouched, Type was set with: %ld\n", type); ok(type == 666, "Expected untouched, Type was set with: %ld\n", type);
ok(size == 666, "Expected untouched, Size was set with: %ld \n", size); ok(size == 666, "Expected untouched, Size was set with: %ld\n", size);
ok(reserved == 3, "Expected reserved = 3, reserved is: %ld \n", reserved); ok(reserved == 3, "Expected reserved = 3, reserved is: %ld\n", reserved);
/* INVALID handle. Non-existent value. */ /* INVALID handle. Non-existent value. */
type = 666; type = 666;
@ -187,7 +187,7 @@ START_TEST(RegQueryValueExW)
ok(ret == ERROR_INVALID_PARAMETER, "RegQueryValueExW returned: %lx\n", ret); ok(ret == ERROR_INVALID_PARAMETER, "RegQueryValueExW returned: %lx\n", ret);
ok(GetLastError() == 0xdeadbeef, "RegQueryValueExW returned: %lx\n", GetLastError()); ok(GetLastError() == 0xdeadbeef, "RegQueryValueExW returned: %lx\n", GetLastError());
ok(type == 666, "Expected untouched, Type was set with: %ld\n", type); ok(type == 666, "Expected untouched, Type was set with: %ld\n", type);
ok(size == 666, "Expected untouched, Size was set with: %ld \n", size); ok(size == 666, "Expected untouched, Size was set with: %ld\n", size);
ok(reserved == 3, "Expected reserved = 3, reserved is: %ld\n", reserved); ok(reserved == 3, "Expected reserved = 3, reserved is: %ld\n", reserved);
/* VALID handle, Non-existent value */ /* VALID handle, Non-existent value */
@ -230,8 +230,8 @@ START_TEST(RegQueryValueExW)
ok(ret == ERROR_INVALID_PARAMETER, "RegQueryValueExW returned: %lx\n", ret); ok(ret == ERROR_INVALID_PARAMETER, "RegQueryValueExW returned: %lx\n", ret);
ok(GetLastError() == 0xdeadbeef, "RegQueryValueExW returned: %lx\n", GetLastError()); ok(GetLastError() == 0xdeadbeef, "RegQueryValueExW returned: %lx\n", GetLastError());
ok(type == 666, "Expected untouched, Type was set with: %ld\n", type); ok(type == 666, "Expected untouched, Type was set with: %ld\n", type);
ok(size == 666, "Expected untouched, Size was set with: %ld \n", size); ok(size == 666, "Expected untouched, Size was set with: %ld\n", size);
ok(reserved == 3, "Expected reserved = 3, reserved is: %ld \n", reserved); ok(reserved == 3, "Expected reserved = 3, reserved is: %ld\n", reserved);
/* Existent value */ /* Existent value */
SetLastError(0xdeadbeef); SetLastError(0xdeadbeef);

View file

@ -49,7 +49,7 @@ START_TEST(_vsnprintf)
#if defined(TEST_USER32) /* NTDLL doesn't use/set errno */ #if defined(TEST_USER32) /* NTDLL doesn't use/set errno */
ok(errno == EINVAL, "Expected EINVAL, got %u\n", errno); ok(errno == EINVAL, "Expected EINVAL, got %u\n", errno);
#else #else
ok(errno == 0, "Expected 0, got %u \n", errno); ok(errno == 0, "Expected 0, got %u\n", errno);
#endif #endif
/* This one is no better */ /* This one is no better */
@ -69,7 +69,7 @@ START_TEST(_vsnprintf)
#if defined(TEST_USER32) /* NTDLL doesn't use/set errno */ #if defined(TEST_USER32) /* NTDLL doesn't use/set errno */
ok(errno == EINVAL, "Expected EINVAL, got %u\n", errno); ok(errno == EINVAL, "Expected EINVAL, got %u\n", errno);
#else #else
ok(errno == 0, "Expected 0, got %u \n", errno); ok(errno == 0, "Expected 0, got %u\n", errno);
#endif #endif
/* One more NULL checks */ /* One more NULL checks */
@ -80,6 +80,6 @@ START_TEST(_vsnprintf)
#if defined(TEST_USER32) /* NTDLL doesn't use/set errno */ #if defined(TEST_USER32) /* NTDLL doesn't use/set errno */
ok(errno == EINVAL, "Expected EINVAL, got %u\n", errno); ok(errno == EINVAL, "Expected EINVAL, got %u\n", errno);
#else #else
ok(errno == 0, "Expected 0, got %u \n", errno); ok(errno == 0, "Expected 0, got %u\n", errno);
#endif #endif
} }

View file

@ -31,7 +31,7 @@ InitXFORM(
void Test_ExtCreateRegion_Parameters() void Test_ExtCreateRegion_Parameters()
{ {
hrgn = ExtCreateRegion(NULL, 1, pRgnData); hrgn = ExtCreateRegion(NULL, 1, pRgnData);
ok(hrgn != NULL, "ExtCreateRegion failed \n"); ok(hrgn != NULL, "ExtCreateRegion failed\n");
} }
#endif // 0 #endif // 0

View file

@ -99,7 +99,7 @@ BOOL InitStuff(void)
ghpal = CreatePalette((LOGPALETTE*)&gpal); ghpal = CreatePalette((LOGPALETTE*)&gpal);
if (!ghpal) if (!ghpal)
{ {
printf("failed to create a palette \n"); printf("failed to create a palette\n");
return FALSE; return FALSE;
} }
@ -110,7 +110,7 @@ BOOL InitStuff(void)
!InitPerBitDepth(24, 8, 8, &ghbmp24, &ghdcDIB24, &ghbmpDIB24, &gpvDIB24) || !InitPerBitDepth(24, 8, 8, &ghbmp24, &ghdcDIB24, &ghbmpDIB24, &gpvDIB24) ||
!InitPerBitDepth(32, 8, 8, &ghbmp32, &ghdcDIB32, &ghbmpDIB32, &gpvDIB32)) !InitPerBitDepth(32, 8, 8, &ghbmp32, &ghdcDIB32, &ghbmpDIB32, &gpvDIB32))
{ {
printf("failed to create objects \n"); printf("failed to create objects\n");
return FALSE; return FALSE;
} }

View file

@ -35,14 +35,14 @@ BOOL CompareStructsAndSaveForLater(PRTL_MEMORY_STREAM pold, PRTL_MEMORY_STREAM p
BOOL equal = TRUE; BOOL equal = TRUE;
// Compare // Compare
if (pold->Vtbl != pnew->Vtbl) { if (equal) { trace("%s: \n", at); equal = FALSE; } trace("Vtbl changed from %p to %p\n", pold->Vtbl, pnew->Vtbl);} if (pold->Vtbl != pnew->Vtbl) { if (equal) { trace("%s:\n", at); equal = FALSE; } trace("Vtbl changed from %p to %p\n", pold->Vtbl, pnew->Vtbl);}
if (pold->RefCount != pnew->RefCount) { if (equal) { trace("%s: \n", at); equal = FALSE; } trace("RefCount changed from %ld to %ld\n", pold->RefCount, pnew->RefCount); } if (pold->RefCount != pnew->RefCount) { if (equal) { trace("%s:\n", at); equal = FALSE; } trace("RefCount changed from %ld to %ld\n", pold->RefCount, pnew->RefCount); }
if (pold->Unk1 != pnew->Unk1) { if (equal) { trace("%s: \n", at); equal = FALSE; } trace("Unk1 changed from %lu to %lu\n", pold->Unk1, pnew->Unk1); } if (pold->Unk1 != pnew->Unk1) { if (equal) { trace("%s:\n", at); equal = FALSE; } trace("Unk1 changed from %lu to %lu\n", pold->Unk1, pnew->Unk1); }
if (pold->Current != pnew->Current) { if (equal) { trace("%s: \n", at); equal = FALSE; } trace("Current changed from %p to %p\n", pold->Current, pnew->Current); } if (pold->Current != pnew->Current) { if (equal) { trace("%s:\n", at); equal = FALSE; } trace("Current changed from %p to %p\n", pold->Current, pnew->Current); }
if (pold->Start != pnew->Start) { if (equal) { trace("%s: \n", at); equal = FALSE; } trace("Start changed from %p to %p\n", pold->Start, pnew->Start); } if (pold->Start != pnew->Start) { if (equal) { trace("%s:\n", at); equal = FALSE; } trace("Start changed from %p to %p\n", pold->Start, pnew->Start); }
if (pold->End != pnew->End) { if (equal) { trace("%s: \n", at); equal = FALSE; } trace("End changed from %p to %p\n", pold->End, pnew->End); } if (pold->End != pnew->End) { if (equal) { trace("%s:\n", at); equal = FALSE; } trace("End changed from %p to %p\n", pold->End, pnew->End); }
if (pold->FinalRelease != pnew->FinalRelease) { if (equal) { trace("%s: \n", at); equal = FALSE; } trace("FinalRelease changed from %p to %p\n", pold->FinalRelease, pnew->FinalRelease); } if (pold->FinalRelease != pnew->FinalRelease) { if (equal) { trace("%s:\n", at); equal = FALSE; } trace("FinalRelease changed from %p to %p\n", pold->FinalRelease, pnew->FinalRelease); }
if (pold->ProcessHandle != pnew->ProcessHandle) { if (equal) { trace("%s: \n", at); equal = FALSE; } trace("ProcessHandle changed from %p to %p\n", pold->ProcessHandle, pnew->ProcessHandle); } if (pold->ProcessHandle != pnew->ProcessHandle) { if (equal) { trace("%s:\n", at); equal = FALSE; } trace("ProcessHandle changed from %p to %p\n", pold->ProcessHandle, pnew->ProcessHandle); }
// Save // Save
pold->Vtbl = pnew->Vtbl; pold->Vtbl = pnew->Vtbl;

View file

@ -105,7 +105,7 @@ static void test_SetupDiInstallClassExA(void)
{ {
RegOpenKeyExW(HKEY_LOCAL_MACHINE, L"SYSTEM", 0, KEY_ALL_ACCESS, &RegHandle); RegOpenKeyExW(HKEY_LOCAL_MACHINE, L"SYSTEM", 0, KEY_ALL_ACCESS, &RegHandle);
del = RegDeleteKeyW(RegHandle, L"CurrentControlSet\\Control\\Class\\{3B409830-5F9D-432A-ABF5-7D2E4E102467}"); del = RegDeleteKeyW(RegHandle, L"CurrentControlSet\\Control\\Class\\{3B409830-5F9D-432A-ABF5-7D2E4E102467}");
ok(del == ERROR_SUCCESS, "Expected success \n"); ok(del == ERROR_SUCCESS, "Expected success\n");
} }
/* [Version]Signature+Class+ClassGUID;[ClassInstall32.NT]AddReg */ /* [Version]Signature+Class+ClassGUID;[ClassInstall32.NT]AddReg */
@ -123,7 +123,7 @@ static void test_SetupDiInstallClassExA(void)
{ {
RegOpenKeyExW(HKEY_LOCAL_MACHINE, L"SYSTEM", 0, KEY_ALL_ACCESS, &RegHandle); RegOpenKeyExW(HKEY_LOCAL_MACHINE, L"SYSTEM", 0, KEY_ALL_ACCESS, &RegHandle);
del = RegDeleteKeyW(RegHandle, L"CurrentControlSet\\Control\\Class\\{3B409830-5F9D-432A-ABF5-7D2E4E102467}"); del = RegDeleteKeyW(RegHandle, L"CurrentControlSet\\Control\\Class\\{3B409830-5F9D-432A-ABF5-7D2E4E102467}");
ok(del == ERROR_SUCCESS, "Expected success \n"); ok(del == ERROR_SUCCESS, "Expected success\n");
} }
/* [Version]Signature+Class+ClassGUID;[ClassInstall32.NT]AddReg; [SampleClassAddReg];*/ /* [Version]Signature+Class+ClassGUID;[ClassInstall32.NT]AddReg; [SampleClassAddReg];*/
@ -141,7 +141,7 @@ static void test_SetupDiInstallClassExA(void)
{ {
RegOpenKeyExW(HKEY_LOCAL_MACHINE, L"SYSTEM", 0, KEY_ALL_ACCESS, &RegHandle); RegOpenKeyExW(HKEY_LOCAL_MACHINE, L"SYSTEM", 0, KEY_ALL_ACCESS, &RegHandle);
del = RegDeleteKeyW(RegHandle, L"CurrentControlSet\\Control\\Class\\{3B409830-5F9D-432A-ABF5-7D2E4E102467}"); del = RegDeleteKeyW(RegHandle, L"CurrentControlSet\\Control\\Class\\{3B409830-5F9D-432A-ABF5-7D2E4E102467}");
ok(del == ERROR_SUCCESS, "Expected success \n"); ok(del == ERROR_SUCCESS, "Expected success\n");
} }
/* [Version]Signature+Class+ClassGUID;[ClassInstall32.NT]AddReg; [SampleClassAddReg]HKR;*/ /* [Version]Signature+Class+ClassGUID;[ClassInstall32.NT]AddReg; [SampleClassAddReg]HKR;*/
@ -159,7 +159,7 @@ static void test_SetupDiInstallClassExA(void)
{ {
RegOpenKeyExW(HKEY_LOCAL_MACHINE, L"SYSTEM", 0, KEY_ALL_ACCESS, &RegHandle); RegOpenKeyExW(HKEY_LOCAL_MACHINE, L"SYSTEM", 0, KEY_ALL_ACCESS, &RegHandle);
del = RegDeleteKeyW(RegHandle, L"CurrentControlSet\\Control\\Class\\{3B409830-5F9D-432A-ABF5-7D2E4E102467}"); del = RegDeleteKeyW(RegHandle, L"CurrentControlSet\\Control\\Class\\{3B409830-5F9D-432A-ABF5-7D2E4E102467}");
ok(del == ERROR_SUCCESS, "Expected success \n"); ok(del == ERROR_SUCCESS, "Expected success\n");
} }
/*[Version]Signature+Class+ClassGUID;[ClassInstall32.NT]AddReg;[SampleClassAddReg]HKR;[ClassInstall32.NT.Services]*/ /*[Version]Signature+Class+ClassGUID;[ClassInstall32.NT]AddReg;[SampleClassAddReg]HKR;[ClassInstall32.NT.Services]*/

View file

@ -107,8 +107,8 @@ void Test_GetKeyState()
hKbdHook = SetWindowsHookEx(WH_KEYBOARD, KeyboardProc, GetModuleHandleA( NULL ), 0); hKbdHook = SetWindowsHookEx(WH_KEYBOARD, KeyboardProc, GetModuleHandleA( NULL ), 0);
hKbdLLHook = SetWindowsHookEx(WH_KEYBOARD_LL, LowLevelKeyboardProc, GetModuleHandleA( NULL ), 0); hKbdLLHook = SetWindowsHookEx(WH_KEYBOARD_LL, LowLevelKeyboardProc, GetModuleHandleA( NULL ), 0);
ok(hKbdHook!=NULL," \n"); ok(hKbdHook != NULL, "\n");
ok(hKbdLLHook!=NULL," \n"); ok(hKbdLLHook != NULL, "\n");
keybd_event(VK_LMENU, 0, 0,0); keybd_event(VK_LMENU, 0, 0,0);

View file

@ -18,11 +18,11 @@
void Usage() void Usage()
{ {
printf(" Usage: smssTest.exe -g|c|s|d \n \ printf(" Usage: smssTest.exe -g|c|s|d\n\
g - generate test files \n \ g - generate test files\n\
c - check files after reboot \n \ c - check files after reboot\n\
s - show registry entry \n \ s - show registry entry\n\
d - delete registry value \n"); d - delete registry value\n");
} }
int ShowRegValue() int ShowRegValue()

View file

@ -30,7 +30,7 @@ IopCleanupAfterException(IN PFILE_OBJECT FileObject,
IN PKEVENT LocalEvent OPTIONAL) IN PKEVENT LocalEvent OPTIONAL)
{ {
PAGED_CODE(); PAGED_CODE();
IOTRACE(IO_API_DEBUG, "IRP: %p. FO: %p \n", Irp, FileObject); IOTRACE(IO_API_DEBUG, "IRP: %p. FO: %p\n", Irp, FileObject);
if (Irp) if (Irp)
{ {
@ -76,7 +76,7 @@ IopFinalizeAsynchronousIo(IN NTSTATUS SynchStatus,
{ {
NTSTATUS FinalStatus = SynchStatus; NTSTATUS FinalStatus = SynchStatus;
PAGED_CODE(); PAGED_CODE();
IOTRACE(IO_API_DEBUG, "IRP: %p. Status: %lx \n", Irp, SynchStatus); IOTRACE(IO_API_DEBUG, "IRP: %p. Status: %lx\n", Irp, SynchStatus);
/* Make sure the IRP was completed, but returned pending */ /* Make sure the IRP was completed, but returned pending */
if (FinalStatus == STATUS_PENDING) if (FinalStatus == STATUS_PENDING)
@ -129,7 +129,7 @@ IopPerformSynchronousRequest(IN PDEVICE_OBJECT DeviceObject,
PVOID NormalContext = NULL; PVOID NormalContext = NULL;
KIRQL OldIrql; KIRQL OldIrql;
PAGED_CODE(); PAGED_CODE();
IOTRACE(IO_API_DEBUG, "IRP: %p. DO: %p. FO: %p \n", IOTRACE(IO_API_DEBUG, "IRP: %p. DO: %p. FO: %p\n",
Irp, DeviceObject, FileObject); Irp, DeviceObject, FileObject);
/* Queue the IRP */ /* Queue the IRP */
@ -220,7 +220,7 @@ IopDeviceFsIoControl(IN HANDLE DeviceHandle,
PAGED_CODE(); PAGED_CODE();
IOTRACE(IO_CTL_DEBUG, "Handle: %p. CTL: %lx. Type: %lx \n", IOTRACE(IO_CTL_DEBUG, "Handle: %p. CTL: %lx. Type: %lx\n",
DeviceHandle, IoControlCode, IsDevIoCtl); DeviceHandle, IoControlCode, IsDevIoCtl);
/* Get the access type */ /* Get the access type */
@ -662,7 +662,7 @@ IopQueryDeviceInformation(IN PFILE_OBJECT FileObject,
KEVENT Event; KEVENT Event;
NTSTATUS Status; NTSTATUS Status;
PAGED_CODE(); PAGED_CODE();
IOTRACE(IO_API_DEBUG, "Handle: %p. CTL: %lx. Type: %lx \n", IOTRACE(IO_API_DEBUG, "Handle: %p. CTL: %lx. Type: %lx\n",
FileObject, InformationClass, File); FileObject, InformationClass, File);
/* Reference the object */ /* Reference the object */
@ -1150,7 +1150,7 @@ IoSynchronousPageWrite(IN PFILE_OBJECT FileObject,
PIRP Irp; PIRP Irp;
PIO_STACK_LOCATION StackPtr; PIO_STACK_LOCATION StackPtr;
PDEVICE_OBJECT DeviceObject; PDEVICE_OBJECT DeviceObject;
IOTRACE(IO_API_DEBUG, "FileObject: %p. Mdl: %p. Offset: %p \n", IOTRACE(IO_API_DEBUG, "FileObject: %p. Mdl: %p. Offset: %p\n",
FileObject, Mdl, Offset); FileObject, Mdl, Offset);
/* Is the write originating from Cc? */ /* Is the write originating from Cc? */
@ -1205,7 +1205,7 @@ IoPageRead(IN PFILE_OBJECT FileObject,
PIRP Irp; PIRP Irp;
PIO_STACK_LOCATION StackPtr; PIO_STACK_LOCATION StackPtr;
PDEVICE_OBJECT DeviceObject; PDEVICE_OBJECT DeviceObject;
IOTRACE(IO_API_DEBUG, "FileObject: %p. Mdl: %p. Offset: %p \n", IOTRACE(IO_API_DEBUG, "FileObject: %p. Mdl: %p. Offset: %p\n",
FileObject, Mdl, Offset); FileObject, Mdl, Offset);
/* Get the Device Object */ /* Get the Device Object */
@ -1322,7 +1322,7 @@ IoSetInformation(IN PFILE_OBJECT FileObject,
KEVENT Event; KEVENT Event;
NTSTATUS Status; NTSTATUS Status;
PAGED_CODE(); PAGED_CODE();
IOTRACE(IO_API_DEBUG, "FileObject: %p. Class: %lx. Length: %lx \n", IOTRACE(IO_API_DEBUG, "FileObject: %p. Class: %lx. Length: %lx\n",
FileObject, FileInformationClass, Length); FileObject, FileInformationClass, Length);
/* Reference the object */ /* Reference the object */

View file

@ -2212,7 +2212,7 @@ IoOpenDeviceRegistryKey(IN PDEVICE_OBJECT DeviceObject,
if ((DevInstKeyType & (PLUGPLAY_REGKEY_DEVICE | PLUGPLAY_REGKEY_DRIVER)) == 0) if ((DevInstKeyType & (PLUGPLAY_REGKEY_DEVICE | PLUGPLAY_REGKEY_DRIVER)) == 0)
{ {
DPRINT1("IoOpenDeviceRegistryKey(): got wrong params, exiting... \n"); DPRINT1("IoOpenDeviceRegistryKey(): got wrong params, exiting...\n");
return STATUS_INVALID_PARAMETER; return STATUS_INVALID_PARAMETER;
} }

View file

@ -46,7 +46,7 @@ PspDumpThreads(BOOLEAN IncludeSystem)
nThreads++; nThreads++;
/* Print the Info */ /* Print the Info */
DbgPrint("State %u Affinity %08x Priority %d PID.TID %d.%d Name %.8s Stack: \n", DbgPrint("State %u Affinity %08x Priority %d PID.TID %d.%d Name %.8s Stack:\n",
Thread->Tcb.State, Thread->Tcb.State,
Thread->Tcb.Affinity, Thread->Tcb.Affinity,
Thread->Tcb.Priority, Thread->Tcb.Priority,

View file

@ -927,7 +927,7 @@ PsExitSpecialApc(IN PKAPC Apc,
NTSTATUS Status; NTSTATUS Status;
PAGED_CODE(); PAGED_CODE();
PSTRACE(PS_KILL_DEBUG, PSTRACE(PS_KILL_DEBUG,
"Apc: %p SystemArgument2: %p \n", Apc, SystemArgument2); "Apc: %p SystemArgument2: %p\n", Apc, SystemArgument2);
/* Don't do anything unless we are in User-Mode */ /* Don't do anything unless we are in User-Mode */
if (Apc->SystemArgument2) if (Apc->SystemArgument2)
@ -950,7 +950,7 @@ PspExitNormalApc(IN PVOID NormalContext,
PKAPC Apc = (PKAPC)SystemArgument1; PKAPC Apc = (PKAPC)SystemArgument1;
PETHREAD Thread = PsGetCurrentThread(); PETHREAD Thread = PsGetCurrentThread();
PAGED_CODE(); PAGED_CODE();
PSTRACE(PS_KILL_DEBUG, "SystemArgument2: %p \n", SystemArgument2); PSTRACE(PS_KILL_DEBUG, "SystemArgument2: %p\n", SystemArgument2);
/* This should never happen */ /* This should never happen */
ASSERT(!(((ULONG_PTR)SystemArgument2) & 1)); ASSERT(!(((ULONG_PTR)SystemArgument2) & 1));

View file

@ -154,7 +154,7 @@ public:
{ {
int rc = this->InternalAddRef(); int rc = this->InternalAddRef();
#if DEBUG_CCOMOBJECT_REFCOUNTING #if DEBUG_CCOMOBJECT_REFCOUNTING
DbgPrint("%s, RefCount is now %d(--)! \n", __FUNCTION__, rc); DbgPrint("%s, RefCount is now %d(--)!\n", __FUNCTION__, rc);
#endif #endif
return rc; return rc;
} }
@ -164,7 +164,7 @@ public:
int rc = this->InternalRelease(); int rc = this->InternalRelease();
#if DEBUG_CCOMOBJECT_REFCOUNTING #if DEBUG_CCOMOBJECT_REFCOUNTING
DbgPrint("%s, RefCount is now %d(--)! \n", __FUNCTION__, rc); DbgPrint("%s, RefCount is now %d(--)!\n", __FUNCTION__, rc);
#endif #endif
if (rc == 0) if (rc == 0)

View file

@ -72,7 +72,7 @@ RtlpCreateCriticalSectionSem(PRTL_CRITICAL_SECTION CriticalSection)
hNewEvent = INVALID_HANDLE_VALUE; hNewEvent = INVALID_HANDLE_VALUE;
} }
DPRINT("Created Event: %p \n", hNewEvent); DPRINT("Created Event: %p\n", hNewEvent);
/* Exchange the LockSemaphore field with the new handle, if it is still 0 */ /* Exchange the LockSemaphore field with the new handle, if it is still 0 */
if (InterlockedCompareExchangePointer((PVOID*)&CriticalSection->LockSemaphore, if (InterlockedCompareExchangePointer((PVOID*)&CriticalSection->LockSemaphore,

View file

@ -151,7 +151,7 @@ RtlpQueryRemoteProcessModules(HANDLE ProcessHandle,
if (!NT_SUCCESS(Status)) if (!NT_SUCCESS(Status))
{ {
/* failure */ /* failure */
DPRINT("NtQueryInformationProcess 1 0x%lx \n", Status); DPRINT("NtQueryInformationProcess 1 0x%lx\n", Status);
return Status; return Status;
} }
@ -176,7 +176,7 @@ RtlpQueryRemoteProcessModules(HANDLE ProcessHandle,
if (!NT_SUCCESS(Status)) if (!NT_SUCCESS(Status))
{ {
/* failure */ /* failure */
DPRINT("NtReadVirtualMemory 1 0x%lx \n", Status); DPRINT("NtReadVirtualMemory 1 0x%lx\n", Status);
return Status; return Status;
} }
@ -194,7 +194,7 @@ RtlpQueryRemoteProcessModules(HANDLE ProcessHandle,
if (!NT_SUCCESS(Status)) if (!NT_SUCCESS(Status))
{ {
/* failure */ /* failure */
DPRINT("NtReadVirtualMemory 2 0x%lx \n", Status); DPRINT("NtReadVirtualMemory 2 0x%lx\n", Status);
return Status; return Status;
} }
@ -213,7 +213,7 @@ RtlpQueryRemoteProcessModules(HANDLE ProcessHandle,
if (!NT_SUCCESS(Status)) if (!NT_SUCCESS(Status))
{ {
/* failure */ /* failure */
DPRINT( "NtReadVirtualMemory 3 0x%lx \n", Status); DPRINT( "NtReadVirtualMemory 3 0x%lx\n", Status);
return Status; return Status;
} }
@ -231,7 +231,7 @@ RtlpQueryRemoteProcessModules(HANDLE ProcessHandle,
if (!NT_SUCCESS(Status)) if (!NT_SUCCESS(Status))
{ {
/* failure */ /* failure */
DPRINT( "NtReadVirtualMemory 3 0x%lx \n", Status); DPRINT( "NtReadVirtualMemory 3 0x%lx\n", Status);
return Status; return Status;
} }
@ -370,7 +370,7 @@ RtlQueryProcessDebugInformation(IN ULONG ProcessId,
Buf->OffsetFree = Buf->OffsetFree + LSize; Buf->OffsetFree = Buf->OffsetFree + LSize;
} }
DPRINT("QueryProcessDebugInformation end \n"); DPRINT("QueryProcessDebugInformation end\n");
DPRINT("QueryDebugInfo : 0x%lx\n", Buf->OffsetFree); DPRINT("QueryDebugInfo : 0x%lx\n", Buf->OffsetFree);
} }
else else
@ -457,7 +457,7 @@ RtlQueryProcessDebugInformation(IN ULONG ProcessId,
Buf->OffsetFree = Buf->OffsetFree + LSize; Buf->OffsetFree = Buf->OffsetFree + LSize;
} }
DPRINT("QueryProcessDebugInformation end \n"); DPRINT("QueryProcessDebugInformation end\n");
DPRINT("QueryDebugInfo : 0x%lx\n", Buf->OffsetFree); DPRINT("QueryDebugInfo : 0x%lx\n", Buf->OffsetFree);
} }

View file

@ -227,7 +227,7 @@ static VOID
DbgPrint("R0: %lx R1: %lx R2: %lx R3: %lx\n", pc->R0, pc->R1, pc->R2, pc->R3); DbgPrint("R0: %lx R1: %lx R2: %lx R3: %lx\n", pc->R0, pc->R1, pc->R2, pc->R3);
DbgPrint("R4: %lx R5: %lx R6: %lx R7: %lx\n", pc->R4, pc->R5, pc->R6, pc->R7); DbgPrint("R4: %lx R5: %lx R6: %lx R7: %lx\n", pc->R4, pc->R5, pc->R6, pc->R7);
DbgPrint("R8: %lx R9: %lx R10: %lx R11: %lx\n", pc->R8, pc->R9, pc->R10, pc->R11); DbgPrint("R8: %lx R9: %lx R10: %lx R11: %lx\n", pc->R8, pc->R9, pc->R10, pc->R11);
DbgPrint("R12: %lx \n", pc->R12); DbgPrint("R12: %lx\n", pc->R12);
#else #else
#pragma message ("Unknown architecture") #pragma message ("Unknown architecture")
#endif #endif

View file

@ -322,7 +322,7 @@ RtlpDphAllocateVm(PVOID *Base, SIZE_T Size, ULONG Type, ULONG Protection)
&Size, &Size,
Type, Type,
Protection); Protection);
DPRINT("Page heap: AllocVm (%p, %Ix, %lx) status %lx \n", Base, Size, Type, Status); DPRINT("Page heap: AllocVm (%p, %Ix, %lx) status %lx\n", Base, Size, Type, Status);
/* Check for failures */ /* Check for failures */
if (!NT_SUCCESS(Status)) if (!NT_SUCCESS(Status))
{ {
@ -331,7 +331,7 @@ RtlpDphAllocateVm(PVOID *Base, SIZE_T Size, ULONG Type, ULONG Protection)
_InterlockedIncrement(&RtlpDphCounter); _InterlockedIncrement(&RtlpDphCounter);
if (RtlpDphBreakOptions & DPH_BREAK_ON_RESERVE_FAIL) if (RtlpDphBreakOptions & DPH_BREAK_ON_RESERVE_FAIL)
{ {
DPRINT1("Page heap: AllocVm (%p, %Ix, %x) failed with %x \n", Base, Size, Type, Status); DPRINT1("Page heap: AllocVm (%p, %Ix, %lx) failed with %lx\n", Base, Size, Type, Status);
DbgBreakPoint(); DbgBreakPoint();
return Status; return Status;
} }
@ -341,7 +341,7 @@ RtlpDphAllocateVm(PVOID *Base, SIZE_T Size, ULONG Type, ULONG Protection)
_InterlockedIncrement(&RtlpDphAllocFails); _InterlockedIncrement(&RtlpDphAllocFails);
if (RtlpDphBreakOptions & DPH_BREAK_ON_COMMIT_FAIL) if (RtlpDphBreakOptions & DPH_BREAK_ON_COMMIT_FAIL)
{ {
DPRINT1("Page heap: AllocVm (%p, %Ix, %x) failed with %x \n", Base, Size, Type, Status); DPRINT1("Page heap: AllocVm (%p, %Ix, %lx) failed with %lx\n", Base, Size, Type, Status);
DbgBreakPoint(); DbgBreakPoint();
return Status; return Status;
} }
@ -358,7 +358,7 @@ RtlpDphFreeVm(PVOID Base, SIZE_T Size, ULONG Type)
/* Free the memory */ /* Free the memory */
Status = RtlpSecMemFreeVirtualMemory(NtCurrentProcess(), &Base, &Size, Type); Status = RtlpSecMemFreeVirtualMemory(NtCurrentProcess(), &Base, &Size, Type);
DPRINT("Page heap: FreeVm (%p, %Ix, %x) status %x \n", Base, Size, Type, Status); DPRINT("Page heap: FreeVm (%p, %Ix, %lx) status %lx\n", Base, Size, Type, Status);
/* Log/report failures */ /* Log/report failures */
if (!NT_SUCCESS(Status)) if (!NT_SUCCESS(Status))
{ {
@ -367,7 +367,7 @@ RtlpDphFreeVm(PVOID Base, SIZE_T Size, ULONG Type)
_InterlockedIncrement(&RtlpDphReleaseFails); _InterlockedIncrement(&RtlpDphReleaseFails);
if (RtlpDphBreakOptions & DPH_BREAK_ON_RELEASE_FAIL) if (RtlpDphBreakOptions & DPH_BREAK_ON_RELEASE_FAIL)
{ {
DPRINT1("Page heap: FreeVm (%p, %Ix, %x) failed with %x \n", Base, Size, Type, Status); DPRINT1("Page heap: FreeVm (%p, %Ix, %lx) failed with %lx\n", Base, Size, Type, Status);
DbgBreakPoint(); DbgBreakPoint();
return Status; return Status;
} }
@ -377,7 +377,7 @@ RtlpDphFreeVm(PVOID Base, SIZE_T Size, ULONG Type)
_InterlockedIncrement(&RtlpDphFreeFails); _InterlockedIncrement(&RtlpDphFreeFails);
if (RtlpDphBreakOptions & DPH_BREAK_ON_FREE_FAIL) if (RtlpDphBreakOptions & DPH_BREAK_ON_FREE_FAIL)
{ {
DPRINT1("Page heap: FreeVm (%p, %Ix, %x) failed with %x \n", Base, Size, Type, Status); DPRINT1("Page heap: FreeVm (%p, %Ix, %lx) failed with %lx\n", Base, Size, Type, Status);
DbgBreakPoint(); DbgBreakPoint();
return Status; return Status;
} }
@ -402,7 +402,7 @@ RtlpDphProtectVm(PVOID Base, SIZE_T Size, ULONG Protection)
_InterlockedIncrement(&RtlpDphProtectFails); _InterlockedIncrement(&RtlpDphProtectFails);
if (RtlpDphBreakOptions & DPH_BREAK_ON_PROTECT_FAIL) if (RtlpDphBreakOptions & DPH_BREAK_ON_PROTECT_FAIL)
{ {
DPRINT1("Page heap: ProtectVm (%p, %Ix, %x) failed with %x \n", Base, Size, Protection, Status); DPRINT1("Page heap: ProtectVm (%p, %Ix, %lx) failed with %lx\n", Base, Size, Protection, Status);
DbgBreakPoint(); DbgBreakPoint();
return Status; return Status;
} }
@ -1873,7 +1873,7 @@ RtlpPageHeapFree(HANDLE HeapPtr,
{ {
if (RtlpDphBreakOptions & DPH_BREAK_ON_NULL_FREE) if (RtlpDphBreakOptions & DPH_BREAK_ON_NULL_FREE)
{ {
DPRINT1("Page heap: freeing a null pointer \n"); DPRINT1("Page heap: freeing a null pointer\n");
DbgBreakPoint(); DbgBreakPoint();
} }
return TRUE; return TRUE;

View file

@ -93,7 +93,7 @@ RtlpInitEnvironment(HANDLE ProcessHandle,
PAGE_READWRITE); PAGE_READWRITE);
if (!NT_SUCCESS(Status)) if (!NT_SUCCESS(Status))
{ {
DPRINT1("Failed to reserve 1MB of space \n"); DPRINT1("Failed to reserve 1MB of space\n");
return Status; return Status;
} }
} }

View file

@ -439,7 +439,7 @@ OutputLine_stub(FILE *file, EXPORT *pexp)
void void
OutputHeader_asmstub(FILE *file, char *libname) OutputHeader_asmstub(FILE *file, char *libname)
{ {
fprintf(file, "; File generated automatically, do not edit! \n\n"); fprintf(file, "; File generated automatically, do not edit!\n\n");
if (giArch == ARCH_X86) if (giArch == ARCH_X86)
{ {