Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

34 lines
539 B

#include "precomp.hxx"
#include "lkrcust.h"
#include "..\samples\numset\numset.h"
BOOL
WINAPI
CNumberSet_TableDump(
IN CLKRHashTable* pht,
IN INT nVerbose)
{
return TRUE;
}
BOOL
WINAPI
int_RecordDump(
IN const void* pvRecord,
IN DWORD dwSignature,
IN INT nVerbose)
{
int test;
// Copy the CTest from the debuggee's memory
ReadMemory(pvRecord, &test, sizeof(test), NULL);
dprintf("%p (%08x): n=%d\n",
pvRecord, dwSignature, test);
return TRUE;
}