home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2001 June / VPR0106A.BIN / OLS / PREX102 / PrEx102.lzh / Src.lzh / ProjExp.odl < prev    next >
Text File  |  2001-02-23  |  1KB  |  45 lines

  1. // ProjExp.odl : ProjExp.dll のタイプ ライブラリのソース
  2.  
  3. // このファイルはタイプ ライブラリ (ProjExp.tlb) を作成するために
  4. // タイプ ライブラリ作成ツール (mktyplib) によって処理されます。
  5.  
  6. [    uuid(6000B8C1-C8C8-483A-BEEF-9E3E976A64F8), version(1.0),
  7.     helpstring ("PROJEXP Developer Studio Add-in") ]
  8. library ProjExp
  9. {
  10.     importlib("stdole32.tlb");
  11.     
  12.  
  13.     //  CCommands 用のデュアル インターフェイス
  14.     //
  15.     //   このアドインが DevStudio に追加するコマンドはすべて
  16.     //   このインターフェイスを利用しなければなりません。 ClassView を
  17.     //   使用して、このインターフェイスにメソッドを追加することができます。
  18.     //   その場合、CCommands クラス内にメソッドの空のインプリメンテーションが
  19.     //   作成されます。
  20.     
  21.     [    uuid(090A77D1-BA18-4295-900D-8323AD34A28D),
  22.         oleautomation,
  23.         dual
  24.     ]
  25.  
  26.     interface ICommands : IDispatch
  27.     {
  28.         // メソッド
  29.         [id(1)]
  30.         HRESULT ProjExpCommandMethod();
  31.         [id(2), helpstring("メソッド ProjExpSpCommandMethod")] HRESULT ProjExpSpCommandMethod();
  32.     };
  33.  
  34.     //  CCommands のクラス情報
  35.  
  36.     [ uuid(743E2D9A-38C1-4A56-8583-30DE8EBCC175) ]
  37.     coclass Commands
  38.     {
  39.         [default] interface ICommands;
  40.     };
  41.  
  42.     //{{AFX_APPEND_ODL}}
  43.     //}}AFX_APPEND_ODL}}
  44. };
  45.