<!--

/*  ***************************************************  */
/*  For inclusion in document pages of the NOTES subweb  */
/*  ***************************************************  */

function GetCharStyleToolTip (Span)
{
    return null;
}

function GetCharStyleToolTipBase (ClassName)
{
    switch (ClassName) {
        case "bcdobj": return "BCD object (boot entry)";
        case "bcdopt": return "BCD element (boot option)";
        case "catid": return "CATID";
        case "clsid": return "CLSID";
        case "cssattribute": return "CSS attribute";
        case "env": return "environment variable";
        case "guid": return "GUID";
        case "htmlattribute": return "HTML attribute";
        case "htmlelement": return "HTML element";
        case "htmltag": return "HTML tag";
        case "iid": return "IID";
        case "inikey": return "entry in .INI file";
        case "inisect": return "section in .INI file";
        case "licvalue": return "license value";
        case "regkey": return "registry key";
        case "regsz": return "registry string data";
        case "regvalue": return "registry value";
    }
    return null;
}

function GetCharStyleToolTipQualifier (ClassName)
{
    switch (ClassName) {
        case "undocumented": return "undocumented";
        case "wdk": return "documented in WDK";
        case "declared": return "declared in WDK";
        case "delayedwdk": return "documented in WDK but not immediately";
        case "delayed": return "not documented immediately";
        case "settlement": return "documented for settlement";
        case "lowlevel": return "documented at higher level";
    }
    return null;
}

/*  Copyright © 2007-2010. Geoff Chappell. All rights reserved.  */

//-->
