55 lines
2.1 KiB
Plaintext
55 lines
2.1 KiB
Plaintext
compile insert setDebugger_Equates
|
|
/*
|
|
** Copyright (C) 2012-2018 Revelation Software Inc. All Rights Reserved **
|
|
|
|
This program is proprietary and is not to be used by or disclosed
|
|
to others, nor is it to be copied without written permission from
|
|
Revelation Technologies, Inc.
|
|
|
|
Author : Captain C
|
|
Date : 22 Oct 2018
|
|
Purpose : Constant definitions for use with the SETDEBUGGER stored
|
|
procedure
|
|
|
|
|
|
Comments
|
|
========
|
|
|
|
|
|
Amended Date Reason
|
|
======= ==== ======
|
|
Mr C 01 Nov 18 Added SAVEWARN flag
|
|
Mr C 25 Apr 18 Added SPY method equates and SETDEBUGGER_SPYIDE$
|
|
|
|
*/
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _SETDEBUGGER_EQUATES_
|
|
#define _SETDEBUGGER_EQUATES_
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// SPY method
|
|
|
|
// Command equates
|
|
equ SETDEBUGGER_SPY_OFF$ to 0
|
|
equ SETDEBUGGER_SPY_ON$ to 1
|
|
equ SETDEBUGGER_SPY_ONIDE$ to 2
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// %%_SETDEBUGGER_%% Common area flags
|
|
|
|
equ SETDEBUGGER_SPY$ to 0x00000001
|
|
equ SETDEBUGGER_NOASSERT$ to 0x00000002 ; * // inverse!
|
|
equ SETDEBUGGER_SPYTRACKIDE$ to 0x00000004
|
|
equ SETDEBUGGER_SPY2SYSMON$ to 0x00000008
|
|
equ SETDEBUGGER_SAVEWARN$ to 0x00000010
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#endif
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|