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

  1. #include "precomp.hxx"
  2. #include "lkrcust.h"
  3. #include "..\samples\numset\numset.h"
  4. BOOL
  5. WINAPI
  6. CNumberSet_TableDump(
  7. IN CLKRHashTable* pht,
  8. IN INT nVerbose)
  9. {
  10. return TRUE;
  11. }
  12. BOOL
  13. WINAPI
  14. int_RecordDump(
  15. IN const void* pvRecord,
  16. IN DWORD dwSignature,
  17. IN INT nVerbose)
  18. {
  19. int test;
  20. // Copy the CTest from the debuggee's memory
  21. ReadMemory(pvRecord, &test, sizeof(test), NULL);
  22. dprintf("%p (%08x): n=%d\n",
  23. pvRecord, dwSignature, test);
  24. return TRUE;
  25. }