home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cl-lib07.zip / pm.zip / usr / include / pm / factorywindow.h < prev    next >
C/C++ Source or Header  |  1995-06-27  |  437b  |  28 lines

  1. #ifndef _FACTORYWINDOW_H_
  2. #define _FACTORYWINDOW_H_
  3.  
  4. #ifndef _DELEGATEWINDOW_H_
  5.   #include <pm/DelegateWindow.h>
  6. #endif
  7.  
  8. @interface FactoryWindow : DelegateWindow
  9. {
  10.   HWND owner;
  11. }
  12.  
  13. - initIn: (Window *) parent;
  14. - associate: (HWND) hwnd;
  15.  
  16. - destroy;
  17.  
  18. - createInPMWindow: (HWND) hwnd;
  19.  
  20. - (MRESULT) handleMessage: (ULONG) msg
  21.             withParams: (MPARAM) mp1 and: (MPARAM) mp2;
  22.  
  23. - specialClass;
  24.  
  25. @end
  26.  
  27. #endif
  28.