|
||
SS_VARIABLE |
||||||||||||||||||
Structure |
A data type that stores information associated with a system variable (i.e. $area).
struct SS_VARIABLE { SS_XYZ xyz; // value, if type == V_XYZ or V_VALUE char *text; // value, if type == V_TEXT int type; // variable type } ;
|
|||||||||||||||||
Members |
|
|||||||||||||||||
Remarks |
For text variables, the memory to hold the text string is allocated via malloc , and assigned to the text field of the var parameter. free should be called to deallocate the memory used by the text string when you are finished using it. |
|
||||||||||||||||
See Also |
|
|||||||||||||||||
Header |
silver.h |
|||||||||||||||||
|