36 lines
1.4 KiB
Plaintext
36 lines
1.4 KiB
Plaintext
compile insert rti_Struct_Equates
|
|
/*
|
|
** Copyright (C) 2012-2022 Revelation Software Inc. All Rights Reserved **
|
|
|
|
Author Mr C
|
|
Date Oct 2012
|
|
Purpose Simple equates to declare the OI struct functions as I'm sick of
|
|
having to type them when I need them
|
|
|
|
Comments
|
|
========
|
|
|
|
This is not the full Struct_Equates - that brings in all the internal
|
|
workings of the C-Structure routines, which we don't need to expose for
|
|
every program that uses a structure.
|
|
|
|
Amended Date Reason
|
|
======= ==== ======
|
|
*/
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _RTI_STRUCT_EQUATES_
|
|
#define _RTI_STRUCT_EQUATES_
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
declare function blank_Struct, struct_Len, struct_To_Var, var_To_Struct
|
|
declare function build_Struct, parse_Struct
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#endif
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|