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.

62 lines
735 B

  1. /*++
  2. Copyright (c) 1999 Microsoft Corporation
  3. Module Name:
  4. dbgarp.c - DbgExtension Structure information specific to ARP1394
  5. Abstract:
  6. Revision History:
  7. Who When What
  8. -------- -------- ----------------------------------------------
  9. josephj 03-02-99 Created
  10. Notes:
  11. --*/
  12. #ifdef TESTPROGRAM
  13. #include "c.h"
  14. #else
  15. #include "precomp.h"
  16. #endif // TESTPROGRAM
  17. #include "util.h"
  18. #include "parse.h"
  19. #if 0
  20. void
  21. do_arp(PCSTR args)
  22. {
  23. DBGCOMMAND *pCmd = Parse(args, &ARP1394_NameSpace);
  24. if (pCmd)
  25. {
  26. DumpCommand(pCmd);
  27. DoCommand(pCmd, NULL);
  28. FreeCommand(pCmd);
  29. pCmd = NULL;
  30. }
  31. return;
  32. }
  33. #endif // 0
  34. void
  35. do_arp(PCSTR args)
  36. {
  37. MyDbgPrintf( "do_arp(...) called\n" );
  38. return;
  39. }