home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / enhframe.zip / enhframe.h < prev    next >
Text File  |  1995-08-07  |  561b  |  21 lines

  1. /**************************************
  2.  
  3. Dan Akselrod (c) 1995.
  4.  
  5. Enhanced frame header. A few definitions, and the EnhaceFrame function
  6. declaraion. Include this .h file into any module that will call
  7. EnhanceFrame.
  8.  
  9. **************************************/
  10. #ifndef __enhframe_h__
  11. #define __enhframe_h__
  12.  
  13. /* Error returns */
  14. #define ENHFRAMEERR_TITLEBAR_NOTEXIST 1
  15. #define ENHFRAMEERR_FRAME_SUBCLASS 2
  16. #define ENHFRAMEERR_TITLEBAR_SUBCLASS 3
  17.  
  18. int EnhanceFrame(HWND);
  19. /* call this function with a !frame window! handle to enhance it. */
  20. #endif
  21.