LT_get_str

 

Description

Get LabTalk string

Syntax

BOOL LT_get_str( LPCSTR lpcszLabTalkString, char * pBuffer, int nBufferSize )

Parameters

lpcszLabTalkString
[input] LabTalk global string, or any other LabTalk string expression
pBuffer
[output] character buffer to receive the string
nBufferSize
[input] size of the buffer including the terminating zero

Return

Return TRUE if success, return FALSE if string variable is not correctly specified or string is too long.

Examples

EX1

void    LT_get_str_ex1()
{
    char    szBuffer[200];
    // Get the value of the string variable %Y (it usually contains the
    // Origin's client path)
    LT_get_str("%Y", szBuffer, 200);
    out_str(szBuffer);
}

Remark

lstrcpyn is used inside Origin to copy LabTalk string into the buffer supplied, so that if the buffer is too small, the result string will have one less character than specified to leave room for the terminating character.

See Also

LT_set_str

Header to Include

origin.h

Reference