GLOBAL e GLOBAL EXTERNAL
Enviado: 14 Set 2016 21:46
Pesquisando,
Achei este tipo no documento do xHarbour, isso existe no harbour?
GLOBAL <varName> [:= <xValue> ]
GLOBAL EXTERNAL <extVarName>
GLOBAL <varName>
<varName> is the symbolic name of the global variable to declare.
<xValue>
<xValue> is an optional value to assign to the GLOBAL variable after being declared. To assign a value, the inline assignment operator (:=) must be used. The simple assignment operator (=) cannot be used. Only literal values are allowed for <xValue> when declaring GLOBAL variables.
GLOBAL EXTERNAL <extVarName>
This is the name of a GLOBAL variable that is declared in another PRG file and must be referred to in the current PRG file.
Achei este tipo no documento do xHarbour, isso existe no harbour?
GLOBAL <varName> [:= <xValue> ]
GLOBAL EXTERNAL <extVarName>
GLOBAL <varName>
<varName> is the symbolic name of the global variable to declare.
<xValue>
<xValue> is an optional value to assign to the GLOBAL variable after being declared. To assign a value, the inline assignment operator (:=) must be used. The simple assignment operator (=) cannot be used. Only literal values are allowed for <xValue> when declaring GLOBAL variables.
GLOBAL EXTERNAL <extVarName>
This is the name of a GLOBAL variable that is declared in another PRG file and must be referred to in the current PRG file.