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
srcrst.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++
- //-----------------------------------------------------------------------------
- // File: srcrst.idl
- //
- // Copyright: Copyright (c) Microsoft Corporation
- //
- // Contents: OLE DB interface definition
- //
- // Comments:
- //
- //-----------------------------------------------------------------------------
- #include "idlmulti.h"
- //
- REMOTED_INTERFACE(0c733a1e-2a1c-11ce-ade5-00aa0044773d)
- interface ISourcesRowset : IUnknown {
- typedef DWORD DBSOURCETYPE;
- enum DBSOURCETYPEENUM {
- DBSOURCETYPE_DATASOURCE = 1,
- DBSOURCETYPE_ENUMERATOR = 2,
- };
- // VERSION 2.0
- cpp_quote("//@@@+ V2.0")
- cpp_quote("#if( OLEDBVER >= 0x0200 )")
- enum DBSOURCETYPEENUM20 {
- DBSOURCETYPE_DATASOURCE_TDP = 1,
- DBSOURCETYPE_DATASOURCE_MDP = 3,
- };
- cpp_quote("#endif // OLEDBVER >= 0x0200")
- cpp_quote("//@@@- V2.0")
- // VERSION 2.5
- cpp_quote("//@@@+ V2.5")
- cpp_quote("#if( OLEDBVER >= 0x0250 )")
- enum DBSOURCETYPEENUM25 {
- DBSOURCETYPE_BINDER = 4,
- };
- cpp_quote("#endif // OLEDBVER >= 0x0250")
- cpp_quote("//@@@- V2.5")
- [local]
- HRESULT GetSourcesRowset(
- [in] IUnknown * pUnkOuter,
- [in] REFIID riid,
- [in] ULONG cPropertySets,
- [in, out, unique, size_is(cPropertySets)] DBPROPSET rgProperties[],
- [out, iid_is(riid)] IUnknown ** ppSourcesRowset
- );
- [call_as(GetSourcesRowset)]
- HRESULT RemoteGetSourcesRowset(
- [in] IUnknown * pUnkOuter,
- [in] REFIID riid,
- [in] ULONG cPropertySets,
- [in, unique, size_is(cPropertySets)] DBPROPSET * rgProperties,
- [out, iid_is(riid)] IUnknown ** ppSourcesRowset,
- [in] ULONG cTotalProps,
- [out, size_is(cTotalProps)] DBPROPSTATUS * rgPropStatus,
- [out] IErrorInfo ** ppErrorInfoRem
- );
- }