ISInterface:FindLSType

From Lavish Software Wiki
Jump to navigation Jump to search

Syntax

  • LSType *FindLSType(char *Name)

Purpose

Find a data type definition

Usage

Parameters

  • char *Name
[in] Name of the LS type

Return Value

  • LSType
Returns a pointer to a data type definition

Examples

Example code
	pStringType=pISInterface->FindLSType("string");
	pIntType=pISInterface->FindLSType("int");
	pBoolType=pISInterface->FindLSType("bool");
	pFloatType=pISInterface->FindLSType("float");
	pTimeType=pISInterface->FindLSType("time");
	pByteType=pISInterface->FindLSType("byte");
	pIntPtrType=pISInterface->FindLSType("intptr");
	pBoolPtrType=pISInterface->FindLSType("boolptr");
	pFloatPtrType=pISInterface->FindLSType("floatptr");
	pBytePtrType=pISInterface->FindLSType("byteptr");

See Also