從單一 IDL 檔案產生 Proxy DLL 和類型程式庫
您可以使用單一 IDL 檔案來產生 Proxy 存根和標頭檔來封送處理常式代碼,以及類型程式庫。 您可以定義程式庫區塊外部的介面,然後從程式庫區塊內參考該介面,如下列範例所示:
//file: AllKnown.idl
[
object, uuid(. . .), <other interface attributes>
]
interface IKnown : IUnknown
{
import "unknwn.idl";
<declarations, etc. for IKnown interface go here>
};
[
<library attributes>
]
library KnownLibrary
{
//reference interface IKnown:
interface IKnown;
//or create a new class:
[
<coclass attributes>
]
coclass KnowMore
{
interface IKnown;
};
};
如需詳細資訊,請參閱 封送處理 OLE 資料類型 和 產生類型程式庫所需的其他檔案。