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.

23 lines
558 B

  1. //----------------------------------------------------------------------------
  2. //
  3. // Copyright (C) Microsoft Corporation, 1997-2001.
  4. //
  5. //----------------------------------------------------------------------------
  6. #ifndef _INSTR_H_
  7. #define _INSTR_H_
  8. // Global assembly control.
  9. #define ASMOPT_VERBOSE 0x00000001
  10. extern ULONG g_AsmOptions;
  11. void ChangeAsmOptions(BOOL Set, PSTR Args);
  12. void igrep(void);
  13. void fnAssemble(PADDR);
  14. void fnUnassemble(PADDR paddr,
  15. ULONG64 value,
  16. BOOL fLength);
  17. #endif // #ifndef _INSTR_H_