home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wpentk.zip / WBPENTK4.DSK / IDFCOMM.IDL < prev    next >
Text File  |  1994-10-07  |  788b  |  39 lines

  1. #ifndef __IDFCOMMON_IDL__
  2. #define __IDFCOMMON_IDL__
  3.  
  4. #include <somobj.idl>
  5. #include <pentypes.idl>
  6. #include <idftypes.idl>
  7.  
  8. interface IDFCommon : SOMObject
  9. {
  10.    /* Common Data Methods */
  11.    VOID     idfSetUser1 ( in ULONG user1 );
  12.    ULONG    idfGetUser1 ( );
  13.    VOID     idfSetUser2 ( in ULONG user2 );
  14.    ULONG    idfGetUser2 ( );
  15.  
  16.    #ifdef __SOMIDL__
  17.    implementation
  18.    {
  19.       releaseorder:  idfSetUser1,
  20.                      idfGetUser1,
  21.                      idfSetUser2,
  22.                      idfGetUser2
  23.                      ;
  24.  
  25.       functionprefix = IDFCommon;
  26.       filestem       = idfcomm;
  27.       callstyle      = idl;
  28.       majorversion   = 0;
  29.       minorversion   = 0;
  30.  
  31.       ULONG User1;
  32.       ULONG User2;
  33.  
  34.    };
  35.    #endif
  36. };
  37. #endif
  38.  
  39.