pong_brushes.cpp
上传用户:szsg028
上传日期:2022-08-01
资源大小:12k
文件大小:0k
源码类别:

GDI/图象编程

开发平台:

Visual C++

  1. #include <windows.h>
  2. HBRUSH PONG_BRUSH_MENSAJE()
  3. {
  4. LOGBRUSH lb;
  5. lb.lbStyle = BS_SOLID;
  6. lb.lbColor = RGB(255, 141, 28);
  7. return CreateBrushIndirect(&lb);
  8. }