1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 00:37:15 +01:00

Typedef c style strings.

This commit is contained in:
Sandu Liviu Catalin 2015-11-13 19:43:49 +02:00
parent 79ab9f7a6a
commit 5db905de2f

View File

@ -169,14 +169,20 @@ typedef long double Float128, Real128, F128, float128, real128,
/* ------------------------------------------------------------------------------------------------
* SHORT SQUIRREL TYPENAMES
*/
typedef SQUnsignedInteger32 SQUint32;
typedef SQUnsignedInteger SQUint;
typedef SQInteger SQInt;
typedef SQUnsignedInteger32 SQUint32;
typedef SQUnsignedInteger SQUint;
typedef SQInteger SQInt;
/* ------------------------------------------------------------------------------------------------
* 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