| 2850 | // Color __________________________________________________________________________________________ |
| 2851 | |
| 2852 | void _ColorPrint ( int iColor, COLORREF nColor ) |
| 2853 | { |
| 2854 | int R = (nColor >> 0) & 0xFF; |
| 2855 | int G = (nColor >> 8) & 0xFF; |
| 2856 | int B = (nColor >> 16) & 0xFF; |
| 2857 | |
| 2858 | ConsoleBufferPushFormat( " Color %01X: %02X %02X %02X", iColor, R, G, B ); // TODO: print name of colors! |
| 2859 | } |
| 2860 | |
| 2861 | void _CmdColorGet ( const int iScheme, const int iColor ) |
| 2862 | { |
no test coverage detected