compile insert rti_RevProfileLog_Equates /* ** Copyright (C) 2012-2022 Revelation Software Inc. All Rights Reserved ** Author Mr C Date 02 Nov 2022 Purpose Equates for use with the RevProfileLog function Comments ======== Amended Date Reason ======= ==== ====== */ /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// #ifndef _RTI_REVPROFILELOG_EQUATES_ #define _RTI_REVPROFILELOG_EQUATES_ /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// declare subroutine RevProfileLog /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// equ RPL_STARTLOG$ to 1; // Call RevProfileLog( RPL_STARTLOG$, fileName, bClear ) equ RPL_STOPLOG$ to 2; // Call RevProfileLog( RPL_STOPLOG$ ) equ RPL_SETNOTE$ to 3; // Call RevProfileLog( RPL_SETNOTE$, Text ) equ RPL_OUTPUTTEXT$ to 4; // Call RevProfileLog( RPL_OUTPUTTEXT$, Text, Indent ) equ RPL_EXCLUDEPROC$ to 5; // Call RevProfileLog( RPL_EXCLUDEPROC$, procName ) equ RPL_INCLUDEPROC$ to 6; // Call RevProfileLog( RPL_INCLUDEPROC$, procName ) equ RPL_CLEAREXCLUDED$ to 7; // Call RevProfileLog( RPL_CLEAREXCLUDED$ ) /////////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////// #endif /////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////