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.

73 lines
1.2 KiB

  1. /*++
  2. Copyright (c) 1997 Microsoft Corporation
  3. Module Name:
  4. unasmdll.h
  5. Abstract:
  6. This contains all the data structures used by the ACPI Unassember. It
  7. also contains the only legal entry point into the library
  8. Author:
  9. Stephane Plante
  10. Environment:
  11. Any
  12. Revision History:
  13. --*/
  14. #ifndef _UNASMDLL_H_
  15. #define _UNASMDLL_H_
  16. #ifndef LOCAL
  17. #define LOCAL __cdecl
  18. #endif
  19. #ifndef EXPORT
  20. #define EXPORT __cdecl
  21. #endif
  22. typedef VOID (*PUNASM_PRINT)(PCCHAR DebugMessage, ... );
  23. extern
  24. ULONG
  25. EXPORT
  26. IsDSDTLoaded(
  27. VOID
  28. );
  29. extern
  30. NTSTATUS
  31. EXPORT
  32. UnAsmLoadDSDT(
  33. PUCHAR DSDT
  34. );
  35. extern
  36. NTSTATUS
  37. EXPORT
  38. UnAsmDSDT(
  39. PUCHAR DSDT,
  40. PUNASM_PRINT PrintFunction,
  41. ULONG_PTR BaseAddress,
  42. ULONG IndentLevel
  43. );
  44. extern
  45. NTSTATUS
  46. EXPORT
  47. UnAsmScope(
  48. PUCHAR *OpCode,
  49. PUCHAR OpCodeEnd,
  50. PUNASM_PRINT PrintFunction,
  51. ULONG_PTR BaseAddress,
  52. ULONG IndentLevel
  53. );
  54. #endif