TVariable
Standard constructor, initialise the TVariable class.
TVariable( void ); TVariable( bool initBoolean ); TVariable( __int64 initInteger ); TVariable( double initDecimal ); TVariable( void* initPointer ); TVariable( const char *initAString ); TVariable( const BYTE *initAString ); TVariable( const char16_t *initWString ); TVariable( const TVariable &initTVariable ); TVariable( const void *initBString, unsigned int bString_l );
Parameters
initBoolean | 8 bit boolean value. |
initInteger | Signed 64 bit Integer. |
initDecimal | 64 bit double floating point value. |
initAString | Any 8 bit (UTF-8) null terminating string. |
initWString | Any 16 bit (UTF-16) null terminating string. |
initTVariable | the value of the TVariable will be copied into the new TVariable. |
initBString | void pointer to a binary string. |
bString_l | the length in bytes of the binary string. |
Return Values
Remarks
Example Use
- C++
- TScript
#include "TScript.h" int wmain(int argc, wchar_t* argv[]) { TVariable integer(1); return NO_ERROR; }
Also See
~TVariableListen All
Comments (0)