Leaked source code of windows server 2003
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.

25 lines
317 B

  1. #include <ntddk.h>
  2. VOID
  3. DumpBuffer(
  4. PUCHAR Data,
  5. ULONG Length
  6. )
  7. {
  8. ULONG i;
  9. for (i=0; i<Length; i++) {
  10. DbgPrint("%02x ",*Data);
  11. Data++;
  12. if (((i & 0xf) == 0) && (i != 0)) {
  13. DbgPrint("\n");
  14. }
  15. }
  16. return;
  17. }