Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
Certif.Idl
Package: SwordOnline.rar [view]
Upload User: dzyhzl
Upload Date: 2019-04-29
Package Size: 56270k
Code Size: 4k
Category:
Game Server Simulator
Development Platform:
C/C++
- //+--------------------------------------------------------------------------
- //
- // Microsoft Windows
- // Copyright (C) Microsoft Corporation, 1996 - 1999
- //
- // File: certif.idl
- //
- // Contents: IDL source for certif.dll
- //
- //---------------------------------------------------------------------------
- import "wtypes.idl";
- // This file will be processed by the MIDL tool to produce the type library
- // (CertIF.tlb) and marshalling code.
- // ICertServerPolicy::EnumerateExtensionsSetup and
- // ICertServerExit::EnumerateExtensionsSetup Flags:
- const LONG ENUMEXT_OBJECTID = 0x00000001; // return objectid; else "friendly" name
- //+--------------------------------------------------------------------------
- // ICertServerPolicy class -- local COM interface
- //+--------------------------------------------------------------------------
- [
- object,
- uuid(aa000922-ffbe-11cf-8800-00a0c903b83c),
- dual,
- helpstring("ICertServerPolicy Interface"),
- pointer_default(unique)
- ]
- interface ICertServerPolicy : IDispatch
- {
- import "oaidl.idl";
- HRESULT SetContext(
- [in] LONG Context);
- HRESULT GetRequestProperty(
- [in] BSTR const strPropertyName,
- [in] LONG PropertyType,
- [out, retval] VARIANT *pvarPropertyValue);
- HRESULT GetRequestAttribute(
- [in] BSTR const strAttributeName,
- [out, retval] BSTR *pstrAttributeValue);
- HRESULT GetCertificateProperty(
- [in] BSTR const strPropertyName,
- [in] LONG PropertyType,
- [out, retval] VARIANT *pvarPropertyValue);
- HRESULT SetCertificateProperty(
- [in] BSTR const strPropertyName,
- [in] LONG PropertyType,
- [in] VARIANT const *pvarPropertyValue);
- HRESULT GetCertificateExtension(
- [in] BSTR const strExtensionName,
- [in] LONG Type,
- [out, retval] VARIANT *pvarValue);
- HRESULT GetCertificateExtensionFlags(
- [out, retval] LONG *pExtFlags);
- HRESULT SetCertificateExtension(
- [in] BSTR const strExtensionName,
- [in] LONG Type,
- [in] LONG ExtFlags,
- [in] VARIANT const *pvarValue);
- HRESULT EnumerateExtensionsSetup(
- [in] LONG Flags);
- HRESULT EnumerateExtensions(
- [out, retval] BSTR *pstrExtensionName);
- HRESULT EnumerateExtensionsClose();
- HRESULT EnumerateAttributesSetup(
- [in] LONG Flags);
- HRESULT EnumerateAttributes(
- [out, retval] BSTR *pstrAttributeName);
- HRESULT EnumerateAttributesClose();
- };
- //+--------------------------------------------------------------------------
- // ICertServerExit class -- local COM interface
- //+--------------------------------------------------------------------------
- [
- object,
- uuid(4ba9eb90-732c-11d0-8816-00a0c903b83c),
- dual,
- helpstring("ICertServerExit Interface"),
- pointer_default(unique)
- ]
- interface ICertServerExit: IDispatch
- {
- import "oaidl.idl";
- HRESULT SetContext(
- [in] LONG Context);
- HRESULT GetRequestProperty(
- [in] BSTR const strPropertyName,
- [in] LONG PropertyType,
- [out, retval] VARIANT *pvarPropertyValue);
- HRESULT GetRequestAttribute(
- [in] BSTR const strAttributeName,
- [out, retval] BSTR *pstrAttributeValue);
- HRESULT GetCertificateProperty(
- [in] BSTR const strPropertyName,
- [in] LONG PropertyType,
- [out, retval] VARIANT *pvarPropertyValue);
- HRESULT GetCertificateExtension(
- [in] BSTR const strExtensionName,
- [in] LONG Type,
- [out, retval] VARIANT *pvarValue);
- HRESULT GetCertificateExtensionFlags(
- [out, retval] LONG *pExtFlags);
- HRESULT EnumerateExtensionsSetup(
- [in] LONG Flags);
- HRESULT EnumerateExtensions(
- [out, retval] BSTR *pstrExtensionName);
- HRESULT EnumerateExtensionsClose();
- HRESULT EnumerateAttributesSetup(
- [in] LONG Flags);
- HRESULT EnumerateAttributes(
- [out, retval] BSTR *pstrAttributeName);
- HRESULT EnumerateAttributesClose();
- };