comparison src/gui_w16.c @ 203:80000fb16feb

updated for version 7.0060
author vimboss
date Tue, 15 Mar 2005 22:34:55 +0000
parents 3fc0f57ecb91
children 797041cd1c66
comparison
equal deleted inserted replaced
202:b6450bf509d8 203:80000fb16feb
582 { 582 {
583 gui.currFont = font; 583 gui.currFont = font;
584 SelectFont(s_hdc, gui.currFont); 584 SelectFont(s_hdc, gui.currFont);
585 } 585 }
586 586
587
588
589
590 /* 587 /*
591 * Set the current text foreground color. 588 * Set the current text foreground color.
592 */ 589 */
593 void 590 void
594 gui_mch_set_fg_color(guicolor_T color) 591 gui_mch_set_fg_color(guicolor_T color)
606 if (gui.currBgColor == color) 603 if (gui.currBgColor == color)
607 return; 604 return;
608 605
609 gui.currBgColor = color; 606 gui.currBgColor = color;
610 SetBkColor(s_hdc, gui.currBgColor); 607 SetBkColor(s_hdc, gui.currBgColor);
608 }
609
610 /*
611 * Set the current text special color.
612 */
613 void
614 gui_mch_set_sp_color(guicolor_T color)
615 {
616 /* TODO */
611 } 617 }
612 618
613 619
614 620
615 void 621 void