Application library ApplSet() AV library
Programming guideline of WinDom

ApplGet()

NAME

ApplGet - Get application parameters.

PROTOTYPAGE

int ApplGet( int mode, ...);

PARAMETERS

mode:
see table below,

...
depend on mode value,

return:
0 if no error.

DESCRIPTION

ApplGet() returns global application parameters. ApplGet() performed the inverse action of ApplSet(). The general call of ApplGet() is :

         int par1, par2, par3, par4;
         ApplSet( mode, &par1, &par2, &par3, &par4);
Usage of par1, par2, par3 and par4 depends on mode value. For details about this mode, read manual of ApplSet(). The NULL value can be used if a parameter hasnot to be read.

         /* Get only the color of string objects */
         int color;
         ApplSet( APS_STRSTYLE, NULL, NULL, &color);
See ApplSet() table which list all avalaible modes.

SEE ALSO

ApplSet(), WinDom Configuration.