Various fixex to make HEAD compile.

I hope I did break nothing.

svn path=/trunk/; revision=16854
This commit is contained in:
Emanuele Aliberti 2005-07-29 10:04:38 +00:00
parent c20aa760c5
commit 3b17d563fa
9 changed files with 23 additions and 1 deletions

View file

@ -39,7 +39,9 @@ BOOLEAN STDCALL
HalStartNextProcessor(ULONG Unknown1,
ULONG ProcessorStack)
{
#if 0
DPRINT("HalStartNextProcessor(%x %x)\n", ProcessorNumber, ProcessorStack);
#endif
return TRUE;
}

View file

@ -198,8 +198,10 @@ BuildTrusteeWithObjectsAndNameA(PTRUSTEEA pTrustee, POBJECTS_AND_NAME_A pObjName
SE_OBJECT_TYPE ObjectType, LPSTR ObjectTypeName,
LPSTR InheritedObjectTypeName, LPSTR Name)
{
#if 0
DPRINT("%p %p 0x%08x %p %p %s\n", pTrustee, pObjName,
ObjectType, ObjectTypeName, InheritedObjectTypeName, debugstr_a(Name));
#endif
pTrustee->pMultipleTrustee = NULL;
pTrustee->MultipleTrusteeOperation = NO_MULTIPLE_TRUSTEE;
@ -217,8 +219,10 @@ BuildTrusteeWithObjectsAndNameW(PTRUSTEEW pTrustee, POBJECTS_AND_NAME_W pObjName
SE_OBJECT_TYPE ObjectType, LPWSTR ObjectTypeName,
LPWSTR InheritedObjectTypeName, LPWSTR Name)
{
#if 0
DPRINT("%p %p 0x%08x %p %p %s\n", pTrustee, pObjName,
ObjectType, ObjectTypeName, InheritedObjectTypeName, debugstr_w(Name));
#endif
pTrustee->pMultipleTrustee = NULL;
pTrustee->MultipleTrusteeOperation = NO_MULTIPLE_TRUSTEE;

View file

@ -928,7 +928,9 @@ UnlockServiceDatabase(SC_LOCK ScLock)
{
DWORD dwError;
#if 0
DPRINT("UnlockServiceDatabase(%x)\n", hSCManager);
#endif
HandleBind();

View file

@ -108,7 +108,7 @@ DtbgWindowProc(HWND Wnd, UINT Msg, WPARAM wParam, LPARAM lParam)
}
default:
DPRINT("Unknown notification code 0x%x sent to the desktop window!\n", nmh->code);
DPRINT("Unknown notification code 0x%x sent to the desktop window!\n", nmh->hdr.code);
return 0;
}
}

View file

@ -16,6 +16,9 @@
#include <wchar.h>
#include "resource.h"
#define NTOS_MODE_USER
#include <ndk/ntndk.h>
#define NDEBUG
#include <debug.h>

View file

@ -62,6 +62,7 @@ SmInitializeClientManagement (VOID)
VOID FASTCALL
SmpSetClientInitialized (PSM_CLIENT_DATA Client)
{
DPRINT("SM: %s(%08lx) called\n", __FUNCTION__, Client);
Client->Flags |= SM_CLIENT_FLAG_INITIALIZED;
}
/**********************************************************************
@ -101,8 +102,10 @@ SmpLookupClient (USHORT SubsystemId,
Client = SmpClientDirectory.Client;
while (NULL != Client)
{
DPRINT("SM: %s: Client==%08lx\n", __FUNCTION__, Client);
if (SubsystemId == Client->SubsystemId)
{
DPRINT("SM: %s: FOUND Client==%08lx\n", __FUNCTION__, Client);
break;
}
if(NULL != Parent)

View file

@ -29,6 +29,9 @@
#include <syssetup/syssetup.h>
#include <userenv.h>
#define NTOS_MODE_USER
#include <ndk/ntndk.h>
#define NDEBUG
#include <debug.h>

View file

@ -33,6 +33,9 @@
#include "setup.h"
#define NTOS_MODE_USER
#include <ndk/ntndk.h>
#define NDEBUG
#include <debug.h>

View file

@ -1160,8 +1160,10 @@ NtUserVkKeyScanEx(
if(vkPtr->wch[CapsState] == wChar)
{
CapsMod = KeyLayout->pCharModifiers->ModNumber[CapsState];
#if 0
DPRINT("nMod %d Vk %04x: CapsMod %08x CapsState %08x MaxModBits %08x\n",
nMod, wVirtKey, CapsMod, CapsState, KeyLayout->pCharModifiers->wMaxModBits);
#endif
return ((CapsMod << 8)|(vkPtr->VirtualKey & 0xff));
}
}