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.

32 lines
433 B

  1. /*++
  2. Copyright (c) 1995 Microsoft Corporation
  3. Module Name:
  4. decoder.h
  5. Abstract:
  6. This module defines the interface to the Instruction Decoder.
  7. Author:
  8. Barry Bond (barrybo) creation-date 29-June-1995
  9. Revision History:
  10. --*/
  11. #ifndef _DECODER_H_
  12. #define _DECODER_H_
  13. VOID
  14. DecodeInstruction(
  15. DWORD InstructionAddress,
  16. PINSTRUCTION Instruction
  17. );
  18. #endif