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
errrec.idl
Package: SwordOnline.rar [view]
Upload User: dzyhzl
Upload Date: 2019-04-29
Package Size: 56270k
Code Size: 3k
Category:
Game Server Simulator
Development Platform:
C/C++
- //-----------------------------------------------------------------------------
- // File: errrec.idl
- //
- // Copyright: Copyright (c) Microsoft Corporation
- //
- // Contents: OLE DB interface definition
- //
- // Comments:
- //
- //-----------------------------------------------------------------------------
- #include "idlmulti.h"
- //
- REMOTED_INTERFACE(0c733a67-2a1c-11ce-ade5-00aa0044773d)
- interface IErrorRecords : IUnknown {
- cpp_quote("#define IDENTIFIER_SDK_MASK 0xF0000000")
- cpp_quote("#define IDENTIFIER_SDK_ERROR 0x10000000")
- typedef struct tagERRORINFO {
- HRESULT hrError;
- DWORD dwMinor;
- CLSID clsid;
- IID iid;
- DISPID dispid;
- } ERRORINFO;
- [local]
- HRESULT AddErrorRecord(
- [in] ERRORINFO * pErrorInfo,
- [in] DWORD dwLookupID,
- [in] DISPPARAMS * pdispparams,
- [in] IUnknown * punkCustomError,
- [in] DWORD dwDynamicErrorID
- );
- [call_as(AddErrorRecord)]
- HRESULT RemoteAddErrorRecord(
- [in] ERRORINFO * pErrorInfo,
- [in] DWORD dwLookupID,
- [in] DISPPARAMS * pdispparams,
- [in] IUnknown * punkCustomError,
- [in] DWORD dwDynamicErrorID,
- [out] IErrorInfo ** ppErrorInfoRem
- );
- [local]
- HRESULT GetBasicErrorInfo(
- [in] ULONG ulRecordNum,
- [out] ERRORINFO * pErrorInfo
- );
- [call_as(GetBasicErrorInfo)]
- HRESULT RemoteGetBasicErrorInfo(
- [in] ULONG ulRecordNum,
- [out] ERRORINFO * pErrorInfo,
- [out] IErrorInfo ** ppErrorInfoRem
- );
- [local]
- HRESULT GetCustomErrorObject(
- [in] ULONG ulRecordNum,
- [in] REFIID riid,
- [out, iid_is(riid)] IUnknown ** ppObject
- );
- [call_as(GetCustomErrorObject)]
- HRESULT RemoteGetCustomErrorObject(
- [in] ULONG ulRecordNum,
- [in] REFIID riid,
- [out, iid_is(riid)] IUnknown ** ppObject,
- [out] IErrorInfo ** ppErrorInfoRem
- );
- [local]
- HRESULT GetErrorInfo(
- [in] ULONG ulRecordNum,
- [in] LCID lcid,
- [out] IErrorInfo ** ppErrorInfo
- );
- [call_as(GetErrorInfo)]
- HRESULT RemoteGetErrorInfo(
- [in] ULONG ulRecordNum,
- [in] LCID lcid,
- [out] IErrorInfo ** ppErrorInfo,
- [out] IErrorInfo ** ppErrorInfoRem
- );
- [local]
- HRESULT GetErrorParameters(
- [in] ULONG ulRecordNum,
- [out] DISPPARAMS * pdispparams
- );
- [call_as(GetErrorParameters)]
- HRESULT RemoteGetErrorParameters(
- [in] ULONG ulRecordNum,
- [out] DISPPARAMS * pdispparams,
- [out] IErrorInfo ** ppErrorInfoRem
- );
- [local]
- HRESULT GetRecordCount(
- [out] ULONG * pcRecords
- );
- [call_as(GetRecordCount)]
- HRESULT RemoteGetRecordCount(
- [out] ULONG * pcRecords,
- [out] IErrorInfo ** ppErrorInfoRem
- );
- }