亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? msado15.tli

?? 孫鑫的《VC++深入詳解》配套源碼 主要是基于MFC編程
?? TLI
?? 第 1 頁 / 共 5 頁
字號:
// Created by Microsoft (R) C/C++ Compiler Version 12.00.8168.0 (2defb991).
//
// msado15.tli
//
// Wrapper implementations for Win32 type library C:\Program Files\Common Files\System\ado\msado15.dll
// compiler-generated file created 03/03/09 at 11:09:17 - DO NOT EDIT!

#pragma once

//
// interface _Collection wrapper method implementations
//

inline long _Collection::GetCount ( ) {
    long _result;
    HRESULT _hr = get_Count(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline IUnknownPtr _Collection::_NewEnum ( ) {
    IUnknown * _result;
    HRESULT _hr = raw__NewEnum(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return IUnknownPtr(_result, false);
}

inline HRESULT _Collection::Refresh ( ) {
    HRESULT _hr = raw_Refresh();
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _hr;
}

//
// interface _DynaCollection wrapper method implementations
//

inline HRESULT _DynaCollection::Append ( IDispatch * Object ) {
    HRESULT _hr = raw_Append(Object);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _hr;
}

inline HRESULT _DynaCollection::Delete ( const _variant_t & Index ) {
    HRESULT _hr = raw_Delete(Index);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _hr;
}

//
// interface _ADO wrapper method implementations
//

inline PropertiesPtr _ADO::GetProperties ( ) {
    struct Properties * _result;
    HRESULT _hr = get_Properties(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return PropertiesPtr(_result, false);
}

//
// interface Properties wrapper method implementations
//

inline PropertyPtr Properties::GetItem ( const _variant_t & Index ) {
    struct Property * _result;
    HRESULT _hr = get_Item(Index, &_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return PropertyPtr(_result, false);
}

//
// interface Property wrapper method implementations
//

inline _variant_t Property::GetValue ( ) {
    VARIANT _result;
    VariantInit(&_result);
    HRESULT _hr = get_Value(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _variant_t(_result, false);
}

inline void Property::PutValue ( const _variant_t & pval ) {
    HRESULT _hr = put_Value(pval);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline _bstr_t Property::GetName ( ) {
    BSTR _result;
    HRESULT _hr = get_Name(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _bstr_t(_result, false);
}

inline enum DataTypeEnum Property::GetType ( ) {
    enum DataTypeEnum _result;
    HRESULT _hr = get_Type(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline long Property::GetAttributes ( ) {
    long _result;
    HRESULT _hr = get_Attributes(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline void Property::PutAttributes ( long plAttributes ) {
    HRESULT _hr = put_Attributes(plAttributes);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

//
// interface Error wrapper method implementations
//

inline long Error::GetNumber ( ) {
    long _result;
    HRESULT _hr = get_Number(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline _bstr_t Error::GetSource ( ) {
    BSTR _result;
    HRESULT _hr = get_Source(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _bstr_t(_result, false);
}

inline _bstr_t Error::GetDescription ( ) {
    BSTR _result;
    HRESULT _hr = get_Description(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _bstr_t(_result, false);
}

inline _bstr_t Error::GetHelpFile ( ) {
    BSTR _result;
    HRESULT _hr = get_HelpFile(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _bstr_t(_result, false);
}

inline long Error::GetHelpContext ( ) {
    long _result;
    HRESULT _hr = get_HelpContext(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline _bstr_t Error::GetSQLState ( ) {
    BSTR _result;
    HRESULT _hr = get_SQLState(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _bstr_t(_result, false);
}

inline long Error::GetNativeError ( ) {
    long _result;
    HRESULT _hr = get_NativeError(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

//
// interface Errors wrapper method implementations
//

inline ErrorPtr Errors::GetItem ( const _variant_t & Index ) {
    struct Error * _result;
    HRESULT _hr = get_Item(Index, &_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return ErrorPtr(_result, false);
}

inline HRESULT Errors::Clear ( ) {
    HRESULT _hr = raw_Clear();
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _hr;
}

//
// interface Command15 wrapper method implementations
//

inline _ConnectionPtr Command15::GetActiveConnection ( ) {
    struct _Connection * _result;
    HRESULT _hr = get_ActiveConnection(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _ConnectionPtr(_result, false);
}

inline void Command15::PutRefActiveConnection ( struct _Connection * ppvObject ) {
    HRESULT _hr = putref_ActiveConnection(ppvObject);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline void Command15::PutActiveConnection ( const _variant_t & ppvObject ) {
    HRESULT _hr = put_ActiveConnection(ppvObject);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline _bstr_t Command15::GetCommandText ( ) {
    BSTR _result;
    HRESULT _hr = get_CommandText(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _bstr_t(_result, false);
}

inline void Command15::PutCommandText ( _bstr_t pbstr ) {
    HRESULT _hr = put_CommandText(pbstr);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline long Command15::GetCommandTimeout ( ) {
    long _result;
    HRESULT _hr = get_CommandTimeout(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline void Command15::PutCommandTimeout ( long pl ) {
    HRESULT _hr = put_CommandTimeout(pl);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline VARIANT_BOOL Command15::GetPrepared ( ) {
    VARIANT_BOOL _result;
    HRESULT _hr = get_Prepared(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline void Command15::PutPrepared ( VARIANT_BOOL pfPrepared ) {
    HRESULT _hr = put_Prepared(pfPrepared);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline _RecordsetPtr Command15::Execute ( VARIANT * RecordsAffected, VARIANT * Parameters, long Options ) {
    struct _Recordset * _result;
    HRESULT _hr = raw_Execute(RecordsAffected, Parameters, Options, &_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _RecordsetPtr(_result, false);
}

inline _ParameterPtr Command15::CreateParameter ( _bstr_t Name, enum DataTypeEnum Type, enum ParameterDirectionEnum Direction, ADO_LONGPTR Size, const _variant_t & Value ) {
    struct _Parameter * _result;
    HRESULT _hr = raw_CreateParameter(Name, Type, Direction, Size, Value, &_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _ParameterPtr(_result, false);
}

inline ParametersPtr Command15::GetParameters ( ) {
    struct Parameters * _result;
    HRESULT _hr = get_Parameters(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return ParametersPtr(_result, false);
}

inline void Command15::PutCommandType ( enum CommandTypeEnum plCmdType ) {
    HRESULT _hr = put_CommandType(plCmdType);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline enum CommandTypeEnum Command15::GetCommandType ( ) {
    enum CommandTypeEnum _result;
    HRESULT _hr = get_CommandType(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline _bstr_t Command15::GetName ( ) {
    BSTR _result;
    HRESULT _hr = get_Name(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _bstr_t(_result, false);
}

inline void Command15::PutName ( _bstr_t pbstrName ) {
    HRESULT _hr = put_Name(pbstrName);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

//
// interface Connection15 wrapper method implementations
//

inline _bstr_t Connection15::GetConnectionString ( ) {
    BSTR _result;
    HRESULT _hr = get_ConnectionString(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _bstr_t(_result, false);
}

inline void Connection15::PutConnectionString ( _bstr_t pbstr ) {
    HRESULT _hr = put_ConnectionString(pbstr);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline long Connection15::GetCommandTimeout ( ) {
    long _result;
    HRESULT _hr = get_CommandTimeout(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline void Connection15::PutCommandTimeout ( long plTimeout ) {
    HRESULT _hr = put_CommandTimeout(plTimeout);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline long Connection15::GetConnectionTimeout ( ) {
    long _result;
    HRESULT _hr = get_ConnectionTimeout(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline void Connection15::PutConnectionTimeout ( long plTimeout ) {
    HRESULT _hr = put_ConnectionTimeout(plTimeout);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline _bstr_t Connection15::GetVersion ( ) {
    BSTR _result;
    HRESULT _hr = get_Version(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _bstr_t(_result, false);
}

inline HRESULT Connection15::Close ( ) {
    HRESULT _hr = raw_Close();
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _hr;
}

inline _RecordsetPtr Connection15::Execute ( _bstr_t CommandText, VARIANT * RecordsAffected, long Options ) {
    struct _Recordset * _result;
    HRESULT _hr = raw_Execute(CommandText, RecordsAffected, Options, &_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _RecordsetPtr(_result, false);
}

inline long Connection15::BeginTrans ( ) {
    long _result;
    HRESULT _hr = raw_BeginTrans(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline HRESULT Connection15::CommitTrans ( ) {
    HRESULT _hr = raw_CommitTrans();
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _hr;
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美日韩久久一区| 国产成人aaa| 6080国产精品一区二区| 天堂成人免费av电影一区| 717成人午夜免费福利电影| 日韩精品三区四区| 在线电影国产精品| 国内外精品视频| 国产精品家庭影院| 欧美三级一区二区| 久久国产尿小便嘘嘘| 久久久久久黄色| 91啦中文在线观看| 喷白浆一区二区| 日本一区二区三区国色天香| 在线看日本不卡| 美女网站色91| 亚洲女爱视频在线| 欧美大片日本大片免费观看| 99久久精品国产网站| 日日摸夜夜添夜夜添亚洲女人| 精品国产91亚洲一区二区三区婷婷| 国产.欧美.日韩| 亚洲成人综合视频| 国产亚洲美州欧州综合国| 一本到三区不卡视频| 成人午夜视频在线| 亚洲一级电影视频| 久久精品一区四区| 欧美精品日韩一本| 成人精品在线视频观看| 日本美女视频一区二区| 中文字幕国产一区| 欧美一区二区三区在线视频| 国产盗摄一区二区| 亚洲mv大片欧洲mv大片精品| 国产欧美一区二区精品忘忧草| 欧美日韩视频在线观看一区二区三区| 狠狠色丁香九九婷婷综合五月| 亚洲天堂成人网| 精品成a人在线观看| 欧美日韩专区在线| eeuss鲁片一区二区三区在线看| 欧美96一区二区免费视频| 最近日韩中文字幕| 国产欧美精品一区二区三区四区 | 欧美人xxxx| 成人免费av网站| 麻豆国产精品一区二区三区| 一区二区三区在线观看国产| 欧美激情一区二区三区在线| 3751色影院一区二区三区| 成人91在线观看| 国产成人一区二区精品非洲| 久久精品国产一区二区三区免费看| 亚洲欧美日韩一区| 中文字幕日韩一区| 久久综合九色综合97_久久久| 91精品国产综合久久精品| 欧美日韩一二三区| 色综合中文字幕| 成人av在线看| 成人黄色片在线观看| 国产精品资源网| 激情综合色播五月| 毛片av一区二区三区| 天堂av在线一区| 天天综合网天天综合色 | 婷婷夜色潮精品综合在线| 亚洲青青青在线视频| 中文字幕一区二区三区视频| 国产欧美综合在线观看第十页| 久久欧美一区二区| 久久亚洲春色中文字幕久久久| 日韩欧美亚洲国产另类| 欧美一卡二卡在线| 欧美mv和日韩mv的网站| 精品国产乱码久久久久久老虎| 欧美变态tickling挠脚心| 精品国产1区二区| 国产亚洲自拍一区| 中文字幕免费不卡在线| 国产精品久久三区| 亚洲美女屁股眼交3| 一区二区三区成人| 视频在线观看91| 久久99精品久久久| 国产成人精品aa毛片| 不卡电影一区二区三区| 在线精品亚洲一区二区不卡| 欧美四级电影在线观看| 欧美日韩国产高清一区| 日韩午夜精品视频| 欧美激情综合在线| 中文字幕一区免费在线观看| 亚洲精品成a人| 日韩精品欧美精品| 国产精品一区一区| 91视视频在线观看入口直接观看www| 在线免费av一区| 精品国产乱码91久久久久久网站| 久久久久免费观看| 尤物在线观看一区| 久久精品噜噜噜成人av农村| 国产老妇另类xxxxx| 在线免费观看日本一区| 精品国产一区二区三区久久影院| 国产精品视频线看| 日韩av高清在线观看| 丁香亚洲综合激情啪啪综合| 色女孩综合影院| 日韩精品一区二区三区在线| 中文字幕一区二区三区在线不卡| 午夜精品久久久久久久久久| 国产精品一卡二卡在线观看| 欧美专区在线观看一区| 精品国产91久久久久久久妲己| 亚洲美腿欧美偷拍| 韩国成人福利片在线播放| 在线免费不卡电影| 久久久久久久久久看片| 亚洲大片一区二区三区| 成人一区在线看| 日韩欧美亚洲国产另类| 一区二区三区在线视频播放 | 久久久99精品免费观看| 一区2区3区在线看| 国产精品亚洲专一区二区三区 | 亚洲一二三专区| 成人午夜激情片| 欧美成人伊人久久综合网| 亚洲精品国产无天堂网2021| 精品一区二区免费在线观看| 精品视频在线免费看| 中文字幕制服丝袜成人av | 偷拍自拍另类欧美| 91在线丨porny丨国产| 久久综合色天天久久综合图片| 亚洲愉拍自拍另类高清精品| 成人小视频在线| 精品国产3级a| 麻豆精品久久久| 欧美喷水一区二区| 亚洲激情一二三区| www..com久久爱| 国产亚洲欧美日韩在线一区| 久久精品99国产精品| 欧美日韩卡一卡二| 亚洲一区二区三区国产| 91一区在线观看| 国产精品家庭影院| 成人免费高清在线| 国产性天天综合网| 国产精品亚洲成人| 精品国偷自产国产一区| 久久草av在线| 日韩精品专区在线影院重磅| 青青青伊人色综合久久| 欧美精品成人一区二区三区四区| 亚洲在线视频一区| 色av成人天堂桃色av| 亚洲乱码国产乱码精品精的特点 | 久久99精品一区二区三区三区| 欧美高清www午色夜在线视频| 亚洲欧美日本在线| 色综合天天综合网天天狠天天| 亚洲视频免费看| 色视频一区二区| 亚洲一区国产视频| 欧美喷潮久久久xxxxx| 亚洲bdsm女犯bdsm网站| 欧美精品一二三四| 青青草国产成人av片免费| 日韩欧美一区二区免费| 国产一区二三区好的| 国产日产精品1区| 99久久精品国产一区| 一区二区三区在线免费播放| 欧美日韩视频第一区| 久久成人免费网站| 国产三区在线成人av| 成人av影院在线| 亚洲一区中文在线| 日韩一卡二卡三卡国产欧美| 黄色日韩三级电影| 最新高清无码专区| 欧美日韩三级在线| 国产一区二区影院| 中文字幕一区二区三区精华液| 色综合中文综合网| 成人高清免费观看| 伊人性伊人情综合网| 在线不卡免费av| 国产毛片精品国产一区二区三区| 欧美国产激情一区二区三区蜜月| 色综合久久久久久久| 日韩国产成人精品| 久久久久久久综合色一本| 一本一道久久a久久精品| 五月婷婷激情综合|