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
CertMod.Idl
Package: SwordOnline.rar [view]
Upload User: dzyhzl
Upload Date: 2019-04-29
Package Size: 56270k
Code Size: 2k
Category:
Game Server Simulator
Development Platform:
C/C++
- //+--------------------------------------------------------------------------
- //
- // Microsoft Windows
- // Copyright (C) Microsoft Corporation, 1996 - 1999
- //
- // File: certmod.idl
- //
- // Contents: IDL source for module management functions
- //
- //---------------------------------------------------------------------------
- import "wtypes.idl";
- //+--------------------------------------------------------------------------
- // ICertManageModule::Configure()
- // Flags for configuration interface
- const LONG CMM_REFRESHONLY = 0x00000001; // Non-interactive configure; just reload settings
- //+--------------------------------------------------------------------------
- // ICertManageModule::XetProperty()
- // Flags for get/set property interface
- // values are bstrs
- const WCHAR wszCMM_PROP_NAME[] = L"Name";
- const WCHAR wszCMM_PROP_DESCRIPTION[] = L"Description";
- const WCHAR wszCMM_PROP_COPYRIGHT[] = L"Copyright";
- const WCHAR wszCMM_PROP_FILEVER[] = L"File Version";
- const WCHAR wszCMM_PROP_PRODUCTVER[] = L"Product Version";
- // value is bstr sizeof(HWND)
- const WCHAR wszCMM_PROP_DISPLAY_HWND[] = L"HWND";
- // values are longs
- const WCHAR wszCMM_PROP_ISMULTITHREADED[] = L"IsMultiThreaded";
- //+--------------------------------------------------------------------------
- // ICertManageModule class -- local COM interface
- //+--------------------------------------------------------------------------
- [
- object,
- uuid(e7d7ad42-bd3d-11d1-9a4d-00c04fc297eb),
- dual,
- helpstring("ICertManageModule Interface"),
- pointer_default(unique)
- ]
- interface ICertManageModule: IDispatch
- {
- import "oaidl.idl";
- HRESULT GetProperty(
- [in] BSTR const strConfig,
- [in] BSTR strStorageLocation,
- [in] BSTR strPropertyName,
- [in] LONG Flags,
- [out, retval] VARIANT* pvarProperty);
- HRESULT SetProperty(
- [in] BSTR const strConfig,
- [in] BSTR strStorageLocation,
- [in] BSTR strPropertyName,
- [in] LONG Flags,
- [in] VARIANT const *pvarProperty);
- HRESULT Configure(
- [in] BSTR const strConfig,
- [in] BSTR strStorageLocation,
- [in] LONG Flags);
- };