home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / slfinsta.zip / picture.h < prev    next >
C/C++ Source or Header  |  2000-03-26  |  602b  |  27 lines

  1. /* $Id: picture.h,v 1.1 2000/03/27 04:52:57 ktk Exp $ */
  2.  
  3. /*
  4.  * Dynamic Windows:
  5.  *          A GTK like implementation of the PM GUI
  6.  *          Bitmap window class
  7.  *
  8.  * (C) 2000 Achim Hasenmueller <achimha@innotek.de>
  9.  * (C) 2000 Brian Smith <dbsoft@technologist.com>
  10.  *
  11.  */
  12.  
  13. #ifndef _H_PICTURE
  14. #define _H_PICTURE
  15.  
  16. #define INCL_DOS
  17. #define INCL_WIN
  18. #define INCL_GPI
  19.  
  20. #include <os2.h>
  21.  
  22. HWND dw_bitmapfile_new(ULONG id);
  23. BOOL dw_bitmapfile_set_bitmap(HWND handle, char *filename);
  24. MRESULT EXPENTRY dw_bitmapclass_wndproc(HWND hwnd, ULONG msg, MPARAM mp1, MPARAM mp2);
  25.  
  26. #endif
  27.