value = GetDiskFontCtrl( tagid );
LONG GetDiskFontCtrl( LONG tagitem );
GetDiskFontCtrl reads global settings of the diskfont library, as the setting of the base DPI X and Y values, the cache enable flag and the
AvailFonts sorting values. The TagItem passed in identifies the type of data item to read.
BOOL cache;
cache = GetDiskFontCtrl(DFCTRL_CACHE);
/* read the current cache enable flag. */
This call is not semaphore protected. This means that several calls to this function and SetDiskFontCtrl() might cause inconsistent results. The function will not fail or crash, but the result might be near to useless in a multitasking system. This function should never be called by the average user. Its sole purpose is to provide the font preferences editor with data about the current diskfont settings. It should not be called for other purposes.