open-insight/SYSPROG/STPROCINS/RTI_STRCONV_EQUATES.txt
2024-03-25 15:17:34 -07:00

36 lines
1.4 KiB
Plaintext

compile insert rti_StrConv_Equates
/*
** Copyright (C) 2013-2022 Revelation Software Inc. All Rights Reserved **
Author Mr C
Date October 2013
Purpose Equates for OE String conversion functions
Comments
========
This module simply declares the OE string encoding functions exported from
CRevExt.Dll. Basically it's because I'm sick of typing them :)
Amended Date Reason
======= ==== ======
*/
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#ifndef _RTI_STRCONV_EQUATES_
#define _RTI_STRCONV_EQUATES_
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
declare function str_ANSI, str_UTF8, str_Unicode
declare function ANSI_Str, ANSI_UTF8, ANSI_Unicode
declare function UTF8_Str, UTF8_ANSI, UTF8_Unicode
declare function Unicode_Str, Unicode_ANSI, Unicode_UTF8
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#endif
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////