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.

59 lines
751 B

  1. /*++
  2. Copyright (c) 1997 Microsoft Corporation
  3. Module Name:
  4. stack.h
  5. Abstract:
  6. Dumps the AML Context Structure in Human-Readable-Form (HRF)
  7. Author:
  8. Stephane Plante (splante) 26-Oct-1997
  9. Environment:
  10. User Mode.
  11. Revision History:
  12. --*/
  13. #ifndef _STACK_H_
  14. #define _STACK_H_
  15. VOID
  16. stackArgument(
  17. IN ULONG_PTR ObjectAddress
  18. );
  19. VOID
  20. stackCall(
  21. IN ULONG_PTR CallAddress
  22. );
  23. PUCHAR
  24. stackGetAmlTermPath(
  25. IN ULONG_PTR AmlTermAddress
  26. );
  27. PUCHAR
  28. stackGetObjectPath(
  29. IN ULONG_PTR AmlTermAddress
  30. );
  31. VOID
  32. stackTerm(
  33. IN ULONG_PTR TermAddress
  34. );
  35. VOID
  36. stackTrace(
  37. IN ULONG_PTR ContextAddress,
  38. IN ULONG Verbose
  39. );
  40. #endif