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

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

?? msado15.tli

?? google搜索的核心技術
?? TLI
?? 第 1 頁 / 共 5 頁
字號:
// Created by Microsoft (R) C/C++ Compiler Version 12.00.9782.0 (3944fd67).
//
// msado15.tli
//
// Wrapper implementations for Win32 type library C:\Program Files\common files\system\ado\msado15.dll
// compiler-generated file created 06/13/06 at 10:51:38 - 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一区二区三区免费野_久草精品视频
亚洲三级小视频| 精品免费日韩av| 国产.欧美.日韩| 激情综合网最新| 久久成人久久爱| 国产精品一区二区在线播放 | 一区二区三区中文字幕精品精品 | 一区二区三区色| 亚洲蜜臀av乱码久久精品 | 麻豆91免费观看| 久久99精品久久久久久| 国产在线麻豆精品观看| 精品亚洲国内自在自线福利| 国产精品一区三区| 成人av免费观看| 欧美三级日韩三级| 日韩欧美一级二级三级久久久| 欧美大白屁股肥臀xxxxxx| 精品日韩av一区二区| 国产欧美日韩另类视频免费观看| 国产精品久久福利| 亚洲一二三四区| 久久激情五月激情| www.日本不卡| 欧美日韩一区高清| 久久亚洲影视婷婷| 亚洲激情在线播放| 蜜臀国产一区二区三区在线播放| 国产精品中文字幕一区二区三区| 成人黄色综合网站| 欧美日本一道本| 国产日韩亚洲欧美综合| 亚洲第一狼人社区| 国产91丝袜在线18| 69p69国产精品| 欧美国产视频在线| 人禽交欧美网站| 色婷婷av一区二区三区gif| 日韩欧美亚洲一区二区| 亚洲精品国产成人久久av盗摄| 麻豆视频观看网址久久| 色综合久久久久综合99| 精品国精品国产| 亚洲国产wwwccc36天堂| voyeur盗摄精品| 日韩欧美不卡一区| 亚洲一级电影视频| 波多野结衣欧美| 久久久国际精品| 石原莉奈一区二区三区在线观看| 成人久久久精品乱码一区二区三区| 91精品国产综合久久福利| 亚洲色图欧洲色图婷婷| 韩国av一区二区三区| 欧美高清你懂得| 一区二区三区影院| 99久久精品免费看国产 | 欧美日韩在线精品一区二区三区激情| 精品国产99国产精品| 五月激情综合色| 欧美亚洲另类激情小说| 国产精品久久夜| 国产.精品.日韩.另类.中文.在线.播放| 欧美日韩小视频| 一区二区三区久久| 色婷婷综合久色| 亚洲三级小视频| 色噜噜偷拍精品综合在线| 国产精品每日更新| 国产91综合一区在线观看| 国产亚洲欧美日韩在线一区| 国产在线播精品第三| 精品少妇一区二区三区| 美女被吸乳得到大胸91| 6080yy午夜一二三区久久| 天堂午夜影视日韩欧美一区二区| 91久久精品一区二区三区| 亚洲欧美另类久久久精品2019| 成年人网站91| 亚洲黄色录像片| 欧美性色欧美a在线播放| 亚洲国产欧美在线人成| 欧美二区乱c少妇| 免费观看久久久4p| 久久蜜桃av一区精品变态类天堂 | 国产精品一区二区三区乱码| 久久久夜色精品亚洲| 韩国三级电影一区二区| 国产亚洲欧美一区在线观看| 99综合电影在线视频| 亚洲欧美区自拍先锋| 欧美丰满少妇xxxxx高潮对白| 久久99国产精品久久99果冻传媒 | 成人99免费视频| 亚洲免费观看高清完整版在线观看熊| 欧美影院一区二区三区| 蜜臀av性久久久久蜜臀aⅴ四虎| www精品美女久久久tv| 成人免费看黄yyy456| 一区二区在线看| 日韩欧美国产小视频| av中文字幕在线不卡| 亚洲成av人片一区二区梦乃| 欧美大片免费久久精品三p| 成人高清免费观看| 天堂蜜桃一区二区三区| 亚洲国产精品精华液ab| 欧美日韩国产高清一区二区 | 91精品国产欧美一区二区成人| 免费黄网站欧美| 中文字幕中文字幕在线一区| 在线电影院国产精品| 国产乱码字幕精品高清av| 亚洲一区二区三区中文字幕在线| 精品国精品国产| 欧美亚洲高清一区| 国产成人在线影院| 免费观看日韩av| 亚洲色图清纯唯美| 久久久久久久久久久99999| 欧美在线一二三四区| 国产成人av电影在线观看| 午夜一区二区三区视频| 欧美激情一区二区三区四区| 欧美日本不卡视频| 99国产精品一区| 国产成人av一区二区| 免费人成黄页网站在线一区二区| 亚洲人成7777| 中文久久乱码一区二区| 久久久久国色av免费看影院| 日韩一区二区在线看| 日本韩国欧美一区二区三区| 国产91色综合久久免费分享| 韩国女主播成人在线观看| 丝袜美腿一区二区三区| 亚洲免费观看高清完整版在线观看熊| 久久精品欧美一区二区三区不卡| 欧美久久久久久久久久| 欧美日韩一区高清| 欧美性猛交xxxxxx富婆| 色狠狠色狠狠综合| 色婷婷久久99综合精品jk白丝| 欧美色国产精品| 色综合久久综合| 91麻豆国产香蕉久久精品| 丁香婷婷综合五月| 床上的激情91.| 粉嫩欧美一区二区三区高清影视| 国产精品中文欧美| 粉嫩av一区二区三区| 成人蜜臀av电影| 99re在线精品| 91浏览器打开| 欧美日韩精品久久久| 欧美日韩二区三区| 91精品国产欧美一区二区| 91精品国产aⅴ一区二区| 欧美一区二区高清| 欧美不卡在线视频| 久久久精品一品道一区| 国产精品区一区二区三区| 一区在线观看视频| 亚洲一区精品在线| 老司机午夜精品| 高清不卡一区二区| 一本在线高清不卡dvd| 欧美日韩五月天| 欧美精品一区二区三区久久久| 国产亚洲精品资源在线26u| 欧美激情一区二区三区四区| 亚洲人成网站精品片在线观看| 一区二区三区高清在线| 日韩中文字幕av电影| 经典三级视频一区| 99re成人精品视频| 欧美日本国产一区| 国产亚洲女人久久久久毛片| 亚洲免费观看在线视频| 日本女优在线视频一区二区| 国产一区二区三区免费播放| 99国产精品国产精品毛片| 欧美精品xxxxbbbb| 国产精品美女久久久久高潮 | 欧美一区二区黄| 欧美韩国日本一区| 天堂蜜桃一区二区三区| 东方aⅴ免费观看久久av| 欧美日本视频在线| 国产精品久久午夜| 久久国产福利国产秒拍| 一本久道中文字幕精品亚洲嫩| 日韩欧美电影一二三| 夜夜嗨av一区二区三区| 国产一区二区三区av电影| 欧美视频一区二区三区四区| 欧美韩国日本综合| 青草av.久久免费一区| 色老汉一区二区三区| 国产日本欧美一区二区|