home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ctcoll95.zip / RAHMEN / REDPRT.IDL < prev   
Text File  |  1995-03-20  |  632b  |  35 lines

  1. #ifndef _REDPRT_
  2. #define _REDPRT_
  3. #ifndef _SIMPLPRT_
  4. #include <SimplPrt.idl>
  5. #endif
  6.  
  7. interface RedPart : SimplePart
  8. {
  9.     void    CommonInitRedPart () ;
  10.  
  11. #ifdef __SOMIDL__
  12.     implementation
  13.     {
  14.             functionprefix = redprt ;
  15.             majorversion   = 1 ;
  16.             minorversion   = 0 ;
  17.  
  18.         releaseorder:
  19.             CommonInitRedPart ;
  20.  
  21.         override:
  22.             InitPart,
  23.             InitPartFromStorage,
  24.             Externalize,
  25.             HandleEvent,
  26.             Draw ;
  27.  
  28.         // instance variables
  29.         long    count ;
  30.         } ;
  31. #endif
  32. } ;
  33.  
  34. #endif  // _REDPRT_
  35.