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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? msado15.tli

?? 在運行系統(tǒng)前
?? TLI
?? 第 1 頁 / 共 5 頁
字號:
// Created by Microsoft (R) C/C++ Compiler Version 12.00.8168.0 (2764df43).
//
// msado15.tli
//
// Wrapper implementations for Win32 type library c:\Program Files\Common Files\System\ado\msado15.dll
// compiler-generated file created 04/10/04 at 19:49:31 - 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, long 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一区二区三区免费野_久草精品视频
五月天欧美精品| 欧美亚洲综合在线| 欧美专区在线观看一区| 精品国产乱码久久久久久牛牛| 国产免费成人在线视频| 日韩高清一区二区| 91丝袜国产在线播放| 亚洲精品一区二区三区在线观看| 午夜不卡av在线| 91啦中文在线观看| 国产精品久久久久四虎| 蜜臀久久99精品久久久久久9 | 国产成人av一区二区三区在线| 欧美亚男人的天堂| 自拍偷拍欧美精品| 成人免费视频国产在线观看| 精品女同一区二区| 日本成人在线不卡视频| 欧美色爱综合网| 亚洲午夜精品网| 91久久免费观看| 亚洲日本电影在线| 99精品国产一区二区三区不卡| 久久久99精品免费观看| 久久91精品国产91久久小草| 3d动漫精品啪啪一区二区竹菊| 亚洲综合免费观看高清在线观看| 91香蕉视频黄| 亚洲综合精品久久| 欧美性猛交xxxx黑人交| 亚洲制服丝袜在线| 欧美视频一区二区| 亚洲成人中文在线| 91精品国产综合久久久久 | 国产精品美女久久久久aⅴ国产馆| 狠狠色综合色综合网络| 精品国产伦一区二区三区免费| 热久久一区二区| 精品日产卡一卡二卡麻豆| 久久av老司机精品网站导航| 久久色在线观看| 高清视频一区二区| 一区二区三区在线观看网站| 欧美亚洲精品一区| 免费在线观看日韩欧美| 欧美精品一区二区精品网| 国产成人免费av在线| 亚洲欧洲性图库| 在线观看91精品国产入口| 天堂成人国产精品一区| 精品久久国产老人久久综合| 国产精品99久久久久| 亚洲日本va在线观看| 欧美日韩精品一区二区三区| 精品一区二区三区日韩| 亚洲国产经典视频| 欧美视频一区在线| 精品一区二区免费视频| 国产精品美女久久福利网站| 欧美日韩亚洲国产综合| 久久精品99国产国产精| 国产精品网站导航| 欧美福利视频导航| 国产精品乡下勾搭老头1| 亚洲欧美韩国综合色| 日韩精品中文字幕在线一区| 成人亚洲一区二区一| 亚洲第一福利一区| 日本一区二区三区久久久久久久久不 | 欧美电影免费观看高清完整版在线 | 亚洲激情自拍视频| 日韩精品一区在线| 91黄色小视频| 国产一区二区伦理片| 一区二区三区鲁丝不卡| 久久综合九色综合欧美98| 在线欧美一区二区| 国产xxx精品视频大全| 亚洲综合在线观看视频| 国产亚洲欧美激情| 3atv在线一区二区三区| 色综合久久久久综合| 免费一级欧美片在线观看| 亚洲欧美中日韩| 久久一区二区三区四区| 欧美久久一二三四区| 94-欧美-setu| 国产麻豆成人传媒免费观看| 三级亚洲高清视频| 亚洲电影第三页| 亚洲乱码精品一二三四区日韩在线| 欧美大片拔萝卜| 欧美精品丝袜中出| 欧美性受xxxx| 色网综合在线观看| 99热这里都是精品| 不卡的av网站| 成人听书哪个软件好| 国产一区二区精品久久99| 蜜臀av性久久久久蜜臀aⅴ流畅| 亚洲综合999| 夜夜亚洲天天久久| 亚洲精品视频自拍| 一区二区三区在线观看动漫| 1024精品合集| 亚洲欧美日韩国产手机在线| 中文字幕一区二区三区色视频| 国产无一区二区| 国产日产欧美一区二区视频| 久久无码av三级| 久久久777精品电影网影网| 精品国产凹凸成av人导航| 日韩片之四级片| 久久亚洲精华国产精华液| 26uuu国产一区二区三区| 精品欧美一区二区久久| 久久嫩草精品久久久久| 精品美女一区二区三区| 日韩欧美一区电影| 久久综合国产精品| 中文字幕av一区二区三区免费看| 国产欧美一区二区在线| 中文成人综合网| 亚洲欧美偷拍三级| 一区二区三区在线不卡| 午夜精品aaa| 另类小说图片综合网| 韩国欧美国产1区| 国产激情视频一区二区在线观看| 国产一区二区在线视频| 懂色一区二区三区免费观看 | 久久精品国产秦先生| 国产专区综合网| 97精品久久久午夜一区二区三区| 色综合一区二区三区| 日韩精品专区在线影院重磅| 日韩欧美国产三级| 国产欧美日韩精品在线| 亚洲激情在线播放| 免费不卡在线观看| eeuss影院一区二区三区| 色婷婷国产精品久久包臀| 日韩一区二区三区电影在线观看| 久久久久久久综合狠狠综合| 国产精品嫩草99a| 亚洲国产精品影院| 国产成人午夜电影网| 欧美婷婷六月丁香综合色| 久久久久亚洲蜜桃| 亚洲一二三四在线| 国产裸体歌舞团一区二区| 99精品久久久久久| 日韩三级.com| 樱花影视一区二区| 国产精品99久久久久久久女警| 欧美丝袜丝交足nylons图片| 久久精品欧美日韩精品| 亚洲国产一区在线观看| 国产乱一区二区| 欧美日本在线观看| 国产精品网站导航| 精品一区二区三区av| 欧美日韩精品免费| 国产精品成人在线观看| 国产一区二区在线免费观看| 欧美在线观看视频在线| 国产精品青草综合久久久久99| 亚洲午夜三级在线| 成人免费观看av| 久久久久久免费| 日本vs亚洲vs韩国一区三区二区| 99re在线精品| 国产欧美日韩不卡| 蜜桃久久久久久久| 欧美精品乱人伦久久久久久| 亚洲人成电影网站色mp4| 国产精品123区| 日韩欧美一级精品久久| 亚洲一区二区精品视频| 91在线免费视频观看| 久久精品在这里| 国产精品123| 久久嫩草精品久久久精品| 欧美aaaaaa午夜精品| 欧美日韩精品一区二区| 一区二区免费视频| 一本久久精品一区二区| 国产精品色一区二区三区| 国产精品一区二区久激情瑜伽| 欧美大片在线观看一区| 视频在线在亚洲| 欧美浪妇xxxx高跟鞋交| 亚洲国产一区二区三区青草影视 | 亚洲尤物视频在线| 97久久超碰国产精品电影| 综合激情网...| 在线这里只有精品| 亚洲欧美另类小说视频| 色综合久久精品| 亚洲黄色片在线观看|