mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-01-18 19:47:15 +01:00
Typedef c style strings.
This commit is contained in:
parent
79ab9f7a6a
commit
5db905de2f
@ -169,14 +169,20 @@ typedef long double Float128, Real128, F128, float128, real128,
|
|||||||
/* ------------------------------------------------------------------------------------------------
|
/* ------------------------------------------------------------------------------------------------
|
||||||
* SHORT SQUIRREL TYPENAMES
|
* SHORT SQUIRREL TYPENAMES
|
||||||
*/
|
*/
|
||||||
typedef SQUnsignedInteger32 SQUint32;
|
typedef SQUnsignedInteger32 SQUint32;
|
||||||
typedef SQUnsignedInteger SQUint;
|
typedef SQUnsignedInteger SQUint;
|
||||||
typedef SQInteger SQInt;
|
typedef SQInteger SQInt;
|
||||||
|
|
||||||
/* ------------------------------------------------------------------------------------------------
|
/* ------------------------------------------------------------------------------------------------
|
||||||
* STRING TYPE
|
* STRING TYPE
|
||||||
*/
|
*/
|
||||||
typedef std::basic_string<SQChar> String;
|
typedef std::basic_string<SQChar> String;
|
||||||
|
|
||||||
|
typedef char * CStr;
|
||||||
|
typedef const char * CCStr;
|
||||||
|
|
||||||
|
typedef SQChar * SStr;
|
||||||
|
typedef SQChar char * CSStr;
|
||||||
|
|
||||||
/* ------------------------------------------------------------------------------------------------
|
/* ------------------------------------------------------------------------------------------------
|
||||||
* FORWARD DECLARATIONS
|
* FORWARD DECLARATIONS
|
||||||
|
Loading…
x
Reference in New Issue
Block a user