The R Project SVN R

Rev

Rev 9048 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9048 Rev 9229
Line 1408... Line 1408...
1408
rgb myGetSysColor(int x)
1408
rgb myGetSysColor(int x)
1409
{
1409
{
1410
    int col = GetSysColor(x);
1410
    int col = GetSysColor(x);
1411
    return rgb( (col)&0xFFUL, (col>>8)&0xFFUL, (col>>16)&0x00FFUL );
1411
    return rgb( (col)&0xFFUL, (col>>8)&0xFFUL, (col>>16)&0x00FFUL );
1412
}
1412
}
-
 
1413
 
-
 
1414
rgb dialog_bg()
-
 
1415
{
-
 
1416
    return myGetSysColor(COLOR_BTNFACE);
-
 
1417
}
-
 
1418