DBsetVariableDouble |
Top Previous Next |
An initialization variable as stands in brag. In the data bank initialized variables can be stored. The values are given with the function InitializeParameter/INI at user level. The values with DBsetInitialValue... or with DBsetVariable... are put on programmer's level. DBsetVariableDouble writes such an initialization in the data bank. With the routine DBgetVariableDouble if the value can be determined again. Parametre root (PROOT) [IN] Act on the open data bank. name (char *) [IN] Sign chain gives the name under which the variable is filed. value (STANDS IN) [IN] The value to be stored away. art (int) [IN] About the Flags in art the access to the variable should be steered. There are three constants which regulate the kind of the access. Variables can be put worldwide, i.e. they are freely accessible. Variables can be put as hidden, i.e. they are not visible at the user level (with the user function InitializeParameter). Or they are put as local, then they are visible only for single functions. Result --- Declaration #include "database.h"
void DLLENTRY DBsetVariableDouble ( PROOT root, char * name, STAND-IN value, int art ); Constants VAR_ART_LOCAL VAR_ART_GLOBAL VAR_ART_HIDDEN Related functions
|