39 lines
1.5 KiB
Plaintext
39 lines
1.5 KiB
Plaintext
compile insert rti_Conv_Equates
|
|
/*
|
|
** Copyright (C) 1992-2013 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 : December 2013
|
|
Purpose : Equates for use with iconv/oconv processing
|
|
|
|
Comments
|
|
========
|
|
|
|
|
|
Amended Date Reason
|
|
======= ==== ======
|
|
|
|
*/
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _RTI_CONV_EQUATES_
|
|
#define _RTI_CONV_EQUATES_
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
* // Status() equates
|
|
equ CONV_VALID$ to 0 ; * // Successful
|
|
equ CONV_INVALID_MSG$ to 1 ; * // Bad Data - Display error message
|
|
equ CONV_INVALID_CONV$ to 2 ; * // Bad Conversion - Display error message
|
|
equ CONV_INVALID_NOMSG$ to 3 ; * // Bad but do not show the error message
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#endif
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|