Source code of Windows XP (NT5)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
//+-------------------------------------------------------------------------- // // Microsoft Windows // Copyright (C) Microsoft Corporation, 1996 - 1999 // // File: ccertpol.idl // // Contents: IDL source for ccertpol // Contents: IDL source for ccertxds // //---------------------------------------------------------------------------
import "wtypes.idl"; import "certmod.idl";
//+-------------------------------------------------------------------------- // certpol Type library //+--------------------------------------------------------------------------
[ uuid(39c0a710-7636-11d0-b413-00a0c91bbf8c), version(1.0), helpstring("Policy and Exit module legacy support") ]
library CERTPOLICYLib { importlib("stdole2.tlb");
[ uuid(6853e76a-bd3e-11d1-9a4d-00c04fc297eb), helpstring("CertManageModule legacy support") ] coclass CCertManagePolicyModule { [default] interface ICertManageModule; }; [ uuid(6dc5746e-1a01-11d3-9ed6-00c04f79731e), helpstring("CertManageModule legacy support") ] coclass CCertManageExitModule { [default] interface ICertManageModule; }; };
|