home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / S12315.ZIP / PAINT.C < prev    next >
C/C++ Source or Header  |  1989-05-25  |  322b  |  24 lines

  1. #define INCL_PM
  2.  
  3. #include <os2.h>
  4. #include <stddef.h>
  5. #include "hello.h"
  6.  
  7.  
  8. HPS  hNPS;
  9.  
  10.  
  11. void HelloPaint(hWnd)
  12. HWND hWnd;
  13. {
  14. POINTL pt;
  15. RECTL  rect;
  16.  
  17. hNPS = WinBeginPaint(hWnd,hNPS,NULL);
  18.  
  19. WinQueryWindowRect(hWnd,&rect);
  20. WinFillRect(hNPS,&rect,CLR_WHITE); /* fill back ground */
  21.  
  22. WinEndPaint(hNPS);
  23. }
  24.