?? 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 + -