📄 fastfill.c
字号:
#include "windows.h"#include "wintools.h"/* * WIN Draw Library * Fast fill rectangle *//* * fast fill background (works with non-dithered colors only) */void WINAPIFastFillRect(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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -