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
rstloc.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: rstloc.idl
- //
- // Copyright: Copyright (c) Microsoft Corporation
- //
- // Contents: OLE DB interface definition
- //
- // Comments:
- //
- //-----------------------------------------------------------------------------
- #include "idlmulti.h"
- //
- LOCAL_INTERFACE(0c733a7d-2a1c-11ce-ade5-00aa0044773d)
- interface IRowsetLocate : IRowset {
- //
- // DBCOMPARE -- specifies the results of a bookmark comparison
- //
- typedef DWORD DBCOMPARE;
- enum DBCOMPAREENUM {
- DBCOMPARE_LT,
- DBCOMPARE_EQ,
- DBCOMPARE_GT,
- DBCOMPARE_NE,
- DBCOMPARE_NOTCOMPARABLE
- };
- HRESULT Compare(
- [in] HCHAPTER hReserved,
- [in] DBBKMARK cbBookmark1,
- [in, size_is(cbBookmark1)] const BYTE * pBookmark1,
- [in] DBBKMARK cbBookmark2,
- [in, size_is(cbBookmark2)] const BYTE * pBookmark2,
- [out] DBCOMPARE * pComparison
- );
- HRESULT GetRowsAt(
- [in] HWATCHREGION hReserved1,
- [in] HCHAPTER hReserved2,
- [in] DBBKMARK cbBookmark,
- [in, size_is(cbBookmark)] const BYTE * pBookmark,
- [in] DBROWOFFSET lRowsOffset,
- [in] DBROWCOUNT cRows,
- [out] DBCOUNTITEM * pcRowsObtained,
- [out, size_is(,cRows)] HROW ** prghRows
- );
- HRESULT GetRowsByBookmark(
- [in] HCHAPTER hReserved,
- [in] DBCOUNTITEM cRows,
- [in, size_is(cRows)] const DBBKMARK rgcbBookmarks[],
- [in, size_is(cRows)] const BYTE * rgpBookmarks[],
- [out, size_is(cRows)] HROW rghRows[],
- [out, size_is(cRows)] DBROWSTATUS rgRowStatus[]
- );
- HRESULT Hash(
- [in] HCHAPTER hReserved,
- [in] DBBKMARK cBookmarks,
- [in, size_is(cBookmarks)] const DBBKMARK rgcbBookmarks[],
- [in, size_is(cBookmarks)] const BYTE * rgpBookmarks[],
- [out, size_is(cBookmarks)] DBHASHVALUE rgHashedValues[],
- [out, size_is(cBookmarks)] DBROWSTATUS rgBookmarkStatus[]
- );
- }