fastfill.c
来自「开放源码实时操作系统源码.」· C语言 代码 · 共 20 行
C
20 行
#include "windows.h"
#include "wintools.h"
/*
* WIN Draw Library
* Fast fill rectangle
*/
/*
* fast fill background (works with non-dithered colors only)
*/
void WINAPI
FastFillRect(HDC hdc,LPRECT lprect,COLORREF cr)
{
COLORREF crOld;
crOld = SetBkColor( hdc, cr);
ExtTextOut( hdc, 0, 0, ETO_OPAQUE | ETO_CLIPPED, lprect, NULL, 0, NULL);
SetBkColor( hdc, crOld);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?