mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 11:51:58 +00:00
Silence debug messages
svn path=/trunk/; revision=6782
This commit is contained in:
parent
950a4d9cea
commit
1e4cbe0f46
11 changed files with 41 additions and 38 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: fdo.c,v 1.3 2003/09/25 15:21:11 navaraf Exp $
|
/* $Id: fdo.c,v 1.4 2003/11/24 16:15:00 gvg Exp $
|
||||||
*
|
*
|
||||||
* PROJECT: ReactOS PCI bus driver
|
* PROJECT: ReactOS PCI bus driver
|
||||||
* FILE: fdo.c
|
* FILE: fdo.c
|
||||||
|
@ -9,7 +9,7 @@
|
||||||
*/
|
*/
|
||||||
#include <pci.h>
|
#include <pci.h>
|
||||||
|
|
||||||
//#define NDEBUG
|
#define NDEBUG
|
||||||
#include <debug.h>
|
#include <debug.h>
|
||||||
|
|
||||||
/*** PRIVATE *****************************************************************/
|
/*** PRIVATE *****************************************************************/
|
||||||
|
|
|
@ -10,6 +10,8 @@
|
||||||
#include "controller.h"
|
#include "controller.h"
|
||||||
#include "mouse.h"
|
#include "mouse.h"
|
||||||
#include "psaux.h"
|
#include "psaux.h"
|
||||||
|
|
||||||
|
#define NDEBUG
|
||||||
#include <debug.h>
|
#include <debug.h>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -13,6 +13,9 @@
|
||||||
#include "mouse.h"
|
#include "mouse.h"
|
||||||
#include "psaux.h"
|
#include "psaux.h"
|
||||||
|
|
||||||
|
#define NDEBUG
|
||||||
|
#include <debug.h>
|
||||||
|
|
||||||
static PIRP CurrentIrp;
|
static PIRP CurrentIrp;
|
||||||
static ULONG MouseDataRead;
|
static ULONG MouseDataRead;
|
||||||
static ULONG MouseDataRequired;
|
static ULONG MouseDataRequired;
|
||||||
|
@ -87,7 +90,7 @@ PS2MouseDispatch(PDEVICE_OBJECT DeviceObject, PIRP Irp)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
DbgPrint("NOT IMPLEMENTED\n");
|
DPRINT1("NOT IMPLEMENTED\n");
|
||||||
Status = STATUS_NOT_IMPLEMENTED;
|
Status = STATUS_NOT_IMPLEMENTED;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -201,8 +204,7 @@ AllocatePointerDevice(PDRIVER_OBJECT DriverObject)
|
||||||
Status = IoCreateDevice(DriverObject, sizeof(DEVICE_EXTENSION),
|
Status = IoCreateDevice(DriverObject, sizeof(DEVICE_EXTENSION),
|
||||||
&DeviceName, FILE_DEVICE_SERIAL_MOUSE_PORT, 0, TRUE, &DeviceObject);
|
&DeviceName, FILE_DEVICE_SERIAL_MOUSE_PORT, 0, TRUE, &DeviceObject);
|
||||||
RtlUnicodeStringToAnsiString(&DebugString, &DeviceName, TRUE);
|
RtlUnicodeStringToAnsiString(&DebugString, &DeviceName, TRUE);
|
||||||
DbgPrint(DebugString.Buffer);
|
DPRINT("%s", DebugString.Buffer);
|
||||||
DbgPrint("\n");
|
|
||||||
RtlFreeAnsiString(&DebugString);
|
RtlFreeAnsiString(&DebugString);
|
||||||
/* Device successfully created, leave the cyclus */
|
/* Device successfully created, leave the cyclus */
|
||||||
if (NT_SUCCESS(Status))
|
if (NT_SUCCESS(Status))
|
||||||
|
@ -242,9 +244,9 @@ DriverEntry(PDRIVER_OBJECT DriverObject, PUNICODE_STRING RegistryPath)
|
||||||
PDEVICE_OBJECT DeviceObject;
|
PDEVICE_OBJECT DeviceObject;
|
||||||
|
|
||||||
if (DetectPS2Port() == TRUE) {
|
if (DetectPS2Port() == TRUE) {
|
||||||
DbgPrint("PS2 Port Driver version 0.0.2\n");
|
DPRINT("PS2 Port Driver version 0.0.2\n");
|
||||||
} else {
|
} else {
|
||||||
DbgPrint("PS2 port not found.\n");
|
DPRINT1("PS2 port not found.\n");
|
||||||
return STATUS_UNSUCCESSFUL;
|
return STATUS_UNSUCCESSFUL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: scrollbar.c,v 1.19 2003/10/02 23:21:42 weiden Exp $
|
/* $Id: scrollbar.c,v 1.20 2003/11/24 16:15:00 gvg Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -127,7 +127,6 @@ arrowSize, PSCROLLBARINFO psbi)
|
||||||
HPEN hSavePen;
|
HPEN hSavePen;
|
||||||
HBRUSH hSaveBrush, hBrush;
|
HBRUSH hSaveBrush, hBrush;
|
||||||
BOOLEAN top_selected = FALSE, bottom_selected = FALSE;
|
BOOLEAN top_selected = FALSE, bottom_selected = FALSE;
|
||||||
DbgPrint("[SCROLL_DrawInterior:%d]\n", nBar);
|
|
||||||
if(psbi->rgstate[SCROLL_TOP_RECT] & STATE_SYSTEM_PRESSED)
|
if(psbi->rgstate[SCROLL_TOP_RECT] & STATE_SYSTEM_PRESSED)
|
||||||
{
|
{
|
||||||
top_selected = TRUE;
|
top_selected = TRUE;
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
/* $Id: balance.c,v 1.23 2003/11/16 15:20:39 hbirr Exp $
|
/* $Id: balance.c,v 1.24 2003/11/24 16:15:00 gvg Exp $
|
||||||
*
|
*
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
* FILE: ntoskrnl/mm/balance.c
|
* FILE: ntoskrnl/mm/balance.c
|
||||||
|
@ -391,7 +391,7 @@ MiInitBalancerThread(VOID)
|
||||||
KPRIORITY Priority;
|
KPRIORITY Priority;
|
||||||
NTSTATUS Status;
|
NTSTATUS Status;
|
||||||
|
|
||||||
CHECKPOINT1;
|
CHECKPOINT;
|
||||||
|
|
||||||
KeInitializeEvent(&MiBalancerEvent, SynchronizationEvent, FALSE);
|
KeInitializeEvent(&MiBalancerEvent, SynchronizationEvent, FALSE);
|
||||||
KeInitializeTimerEx(&MiBalancerTimer, SynchronizationTimer);
|
KeInitializeTimerEx(&MiBalancerTimer, SynchronizationTimer);
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: init.c,v 1.52 2003/11/17 02:12:51 hyperion Exp $
|
/* $Id: init.c,v 1.53 2003/11/24 16:15:00 gvg Exp $
|
||||||
*
|
*
|
||||||
* init.c - Session Manager initialization
|
* init.c - Session Manager initialization
|
||||||
*
|
*
|
||||||
|
@ -616,8 +616,8 @@ SmPagingFilesQueryRoutine(PWSTR ValueName,
|
||||||
return (STATUS_SUCCESS);
|
return (STATUS_SUCCESS);
|
||||||
}
|
}
|
||||||
|
|
||||||
DbgPrint("SMSS: Created paging file %wZ with size %dKB\n",
|
DPRINT("SMSS: Created paging file %wZ with size %dKB\n",
|
||||||
&FileName, InitialSize.QuadPart / 1024);
|
&FileName, InitialSize.QuadPart / 1024);
|
||||||
Status = NtCreatePagingFile(&FileName,
|
Status = NtCreatePagingFile(&FileName,
|
||||||
&InitialSize,
|
&InitialSize,
|
||||||
&MaximumSize,
|
&MaximumSize,
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
/* $Id: class.c,v 1.40 2003/11/23 11:39:48 navaraf Exp $
|
/* $Id: class.c,v 1.41 2003/11/24 16:15:00 gvg Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -453,14 +453,14 @@ IntGetClassLong(struct _WINDOW_OBJECT *WindowObject, ULONG Offset, BOOL Ansi)
|
||||||
|
|
||||||
if ((int)Offset >= 0)
|
if ((int)Offset >= 0)
|
||||||
{
|
{
|
||||||
DbgPrint("GetClassLong(%x, %d)\n", WindowObject->Self, Offset);
|
DPRINT("GetClassLong(%x, %d)\n", WindowObject->Self, Offset);
|
||||||
if (Offset > WindowObject->Class->cbClsExtra - sizeof(LONG))
|
if (Offset > WindowObject->Class->cbClsExtra - sizeof(LONG))
|
||||||
{
|
{
|
||||||
SetLastWin32Error(ERROR_INVALID_PARAMETER);
|
SetLastWin32Error(ERROR_INVALID_PARAMETER);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
Ret = *((LONG *)(WindowObject->Class->ExtraData + Offset));
|
Ret = *((LONG *)(WindowObject->Class->ExtraData + Offset));
|
||||||
DbgPrint("Result: %x\n", Ret);
|
DPRINT("Result: %x\n", Ret);
|
||||||
return Ret;
|
return Ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -538,7 +538,7 @@ IntSetClassLong(PWINDOW_OBJECT WindowObject, ULONG Offset, LONG dwNewLong, BOOL
|
||||||
|
|
||||||
if ((int)Offset >= 0)
|
if ((int)Offset >= 0)
|
||||||
{
|
{
|
||||||
DbgPrint("SetClassLong(%x, %d, %x)\n", WindowObject->Self, Offset, dwNewLong);
|
DPRINT("SetClassLong(%x, %d, %x)\n", WindowObject->Self, Offset, dwNewLong);
|
||||||
if (Offset > WindowObject->Class->cbClsExtra - sizeof(LONG))
|
if (Offset > WindowObject->Class->cbClsExtra - sizeof(LONG))
|
||||||
{
|
{
|
||||||
SetLastWin32Error(ERROR_INVALID_PARAMETER);
|
SetLastWin32Error(ERROR_INVALID_PARAMETER);
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
/* $Id: input.c,v 1.21 2003/11/24 00:22:53 arty Exp $
|
/* $Id: input.c,v 1.22 2003/11/24 16:15:00 gvg Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -90,13 +90,13 @@ KeyboardThreadMain(PVOID StartContext)
|
||||||
/*
|
/*
|
||||||
* Wait to start input.
|
* Wait to start input.
|
||||||
*/
|
*/
|
||||||
DbgPrint( "Input Thread Waiting for start event\n" );
|
DPRINT( "Input Thread Waiting for start event\n" );
|
||||||
Status = KeWaitForSingleObject(&InputThreadsStart,
|
Status = KeWaitForSingleObject(&InputThreadsStart,
|
||||||
0,
|
0,
|
||||||
UserMode,
|
UserMode,
|
||||||
TRUE,
|
TRUE,
|
||||||
NULL);
|
NULL);
|
||||||
DbgPrint( "Input Thread Starting...\n" );
|
DPRINT( "Input Thread Starting...\n" );
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Receive and process keyboard input.
|
* Receive and process keyboard input.
|
||||||
|
@ -218,7 +218,7 @@ KeyboardThreadMain(PVOID StartContext)
|
||||||
MsqPostKeyboardMessage(msg.message,msg.wParam,msg.lParam);
|
MsqPostKeyboardMessage(msg.message,msg.wParam,msg.lParam);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
DbgPrint( "Input Thread Stopped...\n" );
|
DPRINT( "Input Thread Stopped...\n" );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -228,7 +228,7 @@ NtUserAcquireOrReleaseInputOwnership(BOOLEAN Release)
|
||||||
{
|
{
|
||||||
if (Release && InputThreadsRunning && !pmPrimitiveMessageQueue)
|
if (Release && InputThreadsRunning && !pmPrimitiveMessageQueue)
|
||||||
{
|
{
|
||||||
DbgPrint( "Releasing input: PM = %08x\n", pmPrimitiveMessageQueue );
|
DPRINT( "Releasing input: PM = %08x\n", pmPrimitiveMessageQueue );
|
||||||
KeClearEvent(&InputThreadsStart);
|
KeClearEvent(&InputThreadsStart);
|
||||||
InputThreadsRunning = FALSE;
|
InputThreadsRunning = FALSE;
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
/* $Id: keyboard.c,v 1.15 2003/11/24 00:22:53 arty Exp $
|
/* $Id: keyboard.c,v 1.16 2003/11/24 16:15:00 gvg Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -484,7 +484,7 @@ void InitKbdLayout( PVOID *pkKeyboardLayout ) {
|
||||||
Status = ReadRegistryValue(&KeyName,&ValueName,&DefaultLocale);
|
Status = ReadRegistryValue(&KeyName,&ValueName,&DefaultLocale);
|
||||||
|
|
||||||
if( !NT_SUCCESS(Status) ) {
|
if( !NT_SUCCESS(Status) ) {
|
||||||
DbgPrint( "Could not get default locale (%08x).\n", Status );
|
DPRINT1( "Could not get default locale (%08x).\n", Status );
|
||||||
} else {
|
} else {
|
||||||
DPRINT( "DefaultLocale = %wZ\n", &DefaultLocale );
|
DPRINT( "DefaultLocale = %wZ\n", &DefaultLocale );
|
||||||
|
|
||||||
|
@ -501,7 +501,7 @@ void InitKbdLayout( PVOID *pkKeyboardLayout ) {
|
||||||
RtlInitUnicodeString(&FullLayoutPath,SYSTEMROOT_DIR);
|
RtlInitUnicodeString(&FullLayoutPath,SYSTEMROOT_DIR);
|
||||||
|
|
||||||
if( !NT_SUCCESS(Status) ) {
|
if( !NT_SUCCESS(Status) ) {
|
||||||
DbgPrint("Got default locale but not layout file. (%08x)\n",
|
DPRINT1("Got default locale but not layout file. (%08x)\n",
|
||||||
Status);
|
Status);
|
||||||
RtlFreeUnicodeString(&LayoutFile);
|
RtlFreeUnicodeString(&LayoutFile);
|
||||||
} else {
|
} else {
|
||||||
|
@ -520,7 +520,7 @@ void InitKbdLayout( PVOID *pkKeyboardLayout ) {
|
||||||
sizeof(WCHAR));
|
sizeof(WCHAR));
|
||||||
|
|
||||||
if( !KeyboardLayoutWSTR ) {
|
if( !KeyboardLayoutWSTR ) {
|
||||||
DbgPrint("Couldn't allocate a string for the keyboard layout name.\n");
|
DPRINT1("Couldn't allocate a string for the keyboard layout name.\n");
|
||||||
RtlFreeUnicodeString(&FullLayoutPath);
|
RtlFreeUnicodeString(&FullLayoutPath);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -532,7 +532,7 @@ void InitKbdLayout( PVOID *pkKeyboardLayout ) {
|
||||||
DPRINT( "Load Keyboard Layout: %S\n", KeyboardLayoutWSTR );
|
DPRINT( "Load Keyboard Layout: %S\n", KeyboardLayoutWSTR );
|
||||||
|
|
||||||
if( !kbModule )
|
if( !kbModule )
|
||||||
DbgPrint( "Load Keyboard Layout: No %wZ\n", &FullLayoutPath );
|
DPRINT1( "Load Keyboard Layout: No %wZ\n", &FullLayoutPath );
|
||||||
}
|
}
|
||||||
|
|
||||||
RtlFreeUnicodeString(&FullLayoutPath);
|
RtlFreeUnicodeString(&FullLayoutPath);
|
||||||
|
@ -540,12 +540,12 @@ void InitKbdLayout( PVOID *pkKeyboardLayout ) {
|
||||||
|
|
||||||
if( !kbModule )
|
if( !kbModule )
|
||||||
{
|
{
|
||||||
DbgPrint("Trying to load US Keyboard Layout\n");
|
DPRINT1("Trying to load US Keyboard Layout\n");
|
||||||
kbModule = EngLoadImage(L"\\SystemRoot\\system32\\kbdus.dll");
|
kbModule = EngLoadImage(L"\\SystemRoot\\system32\\kbdus.dll");
|
||||||
|
|
||||||
if (!kbModule)
|
if (!kbModule)
|
||||||
{
|
{
|
||||||
DbgPrint("Failed to load any Keyboard Layout\n");
|
DPRINT1("Failed to load any Keyboard Layout\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -563,7 +563,7 @@ void InitKbdLayout( PVOID *pkKeyboardLayout ) {
|
||||||
} while (FALSE);
|
} while (FALSE);
|
||||||
|
|
||||||
if( !*pkKeyboardLayout ) {
|
if( !*pkKeyboardLayout ) {
|
||||||
DbgPrint("Failed to load the keyboard layout.\n");
|
DPRINT1("Failed to load the keyboard layout.\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
#undef XX_STATUS
|
#undef XX_STATUS
|
||||||
|
@ -828,12 +828,12 @@ NtUserToUnicodeEx(
|
||||||
if( !NT_SUCCESS(MmCopyFromCaller(KeyStateBuf,
|
if( !NT_SUCCESS(MmCopyFromCaller(KeyStateBuf,
|
||||||
lpKeyState,
|
lpKeyState,
|
||||||
sizeof(KeyStateBuf))) ) {
|
sizeof(KeyStateBuf))) ) {
|
||||||
DbgPrint( "Couldn't copy key state from caller.\n" );
|
DPRINT1( "Couldn't copy key state from caller.\n" );
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
OutPwszBuff = ExAllocatePool(NonPagedPool,sizeof(WCHAR) * cchBuff);
|
OutPwszBuff = ExAllocatePool(NonPagedPool,sizeof(WCHAR) * cchBuff);
|
||||||
if( !OutPwszBuff ) {
|
if( !OutPwszBuff ) {
|
||||||
DbgPrint( "ExAllocatePool(%d) failed\n", sizeof(WCHAR) * cchBuff);
|
DPRINT1( "ExAllocatePool(%d) failed\n", sizeof(WCHAR) * cchBuff);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
RtlZeroMemory( OutPwszBuff, sizeof( WCHAR ) * cchBuff );
|
RtlZeroMemory( OutPwszBuff, sizeof( WCHAR ) * cchBuff );
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: misc.c,v 1.30 2003/11/23 13:46:33 weiden Exp $
|
/* $Id: misc.c,v 1.31 2003/11/24 16:19:58 gvg Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -32,10 +32,10 @@ void W32kRegisterPrimitiveMessageQueue() {
|
||||||
pThread = PsGetWin32Thread();
|
pThread = PsGetWin32Thread();
|
||||||
if( pThread && pThread->MessageQueue ) {
|
if( pThread && pThread->MessageQueue ) {
|
||||||
pmPrimitiveMessageQueue = pThread->MessageQueue;
|
pmPrimitiveMessageQueue = pThread->MessageQueue;
|
||||||
DbgPrint( "Installed primitive input queue.\n" );
|
DPRINT( "Installed primitive input queue.\n" );
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
DbgPrint( "Alert! Someone is trying to steal the primitive queue.\n" );
|
DPRINT1( "Alert! Someone is trying to steal the primitive queue.\n" );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*
|
*
|
||||||
* $Id: winsta.c,v 1.45 2003/11/23 11:39:48 navaraf Exp $
|
* $Id: winsta.c,v 1.46 2003/11/24 16:15:00 gvg Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -1042,7 +1042,7 @@ NtUserCreateDesktop(
|
||||||
DesktopObject->WorkArea.right,
|
DesktopObject->WorkArea.right,
|
||||||
DesktopObject->WorkArea.bottom);
|
DesktopObject->WorkArea.bottom);
|
||||||
|
|
||||||
DPRINT1("Created Desktop Window: %08x\n", DesktopObject->DesktopWindow);
|
DPRINT("Created Desktop Window: %08x\n", DesktopObject->DesktopWindow);
|
||||||
|
|
||||||
Status = ObInsertObject(
|
Status = ObInsertObject(
|
||||||
(PVOID)DesktopObject,
|
(PVOID)DesktopObject,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue