home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / include / workprev.idl < prev    next >
Encoding:
Text File  |  1996-02-21  |  1.3 KB  |  50 lines

  1. //
  2. //   COMPONENT_NAME: somu
  3. //
  4. //   ORIGINS: 27
  5. //
  6. //
  7. //   10H9767, 10H9769  (C) COPYRIGHT International Business Machines Corp. 1992,1994
  8. //   All Rights Reserved
  9. //   Licensed Materials - Property of IBM
  10. //   US Government Users Restricted Rights - Use, duplication or
  11. //   disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  12. //
  13.  
  14. #ifndef workprev_idl
  15. #define workprev_idl
  16.  
  17. #include <event.idl>
  18.  
  19. interface SOMEWorkProcEvent : SOMEEvent
  20.  
  21. // SOMEWorkProcEvent is the class for generic workProc events within the Event Manager.
  22. // This class should be queried for events of the following type(s):
  23. //      EMWorkProcEvent
  24. // An instance of this class is initialized and passed to the callback
  25. // of a workproc event.
  26.  
  27. // Although at present this class has no methods, its parent methods can be
  28. // called to verify that the event type is EMWorkProcEvent.
  29. {
  30.  
  31. #ifdef __SOMIDL__
  32.   implementation {
  33.  
  34.     majorversion = 2;
  35.     minorversion = 1;
  36.     filestem = workprev;
  37.     callstyle = idl;
  38.  
  39.     passthru C_h_after =  "#include <eventmsk.h>";
  40.     passthru C_xh_after =  "#include <eventmsk.h>";
  41.     passthru C_hh_after =  "#include <eventmsk.h>";
  42.  
  43.     somInit: override;
  44.  
  45.   };
  46. #endif /* __SOMIDL__ */
  47. };
  48.  
  49. #endif  /* workprev_idl */
  50.