ImageDebugSupport.h 657 B

123456789101112131415161718192021
  1. /** @file
  2. Public include file for Debug Agent Library instance and PE/COFF Extra
  3. Action Library instance.
  4. Copyright (c) 2010 - 2013, Intel Corporation. All rights reserved.<BR>
  5. SPDX-License-Identifier: BSD-2-Clause-Patent
  6. **/
  7. #ifndef __IMAGE_DEBUG_SUPPORT_H__
  8. #define __IMAGE_DEBUG_SUPPORT_H__
  9. #define IO_PORT_BREAKPOINT_ADDRESS 0x84
  10. #define IMAGE_LOAD_SIGNATURE SIGNATURE_32('L','O','A','D')
  11. #define IMAGE_UNLOAD_SIGNATURE SIGNATURE_32('U','N','L','O')
  12. #define AGENT_HANDLER_SIGNATURE SIGNATURE_32('A','G','T','H')
  13. #define DEBUG_AGENT_IMAGE_WAIT 0x00
  14. #define DEBUG_AGENT_IMAGE_CONTINUE 0x01
  15. #endif