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

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

?? msado15.tli

?? 該源碼的前臺用C++編寫
?? TLI
?? 第 1 頁 / 共 5 頁
字號:
// Created by Microsoft (R) C/C++ Compiler Version 12.00.8168.0 (ea61aaa1).
//
// msado15.tli
//
// Wrapper implementations for Win32 type library c:\program files\common files\system\ado\msado15.dll
// compiler-generated file created 03/06/08 at 13:27:41 - 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电影一区| 日韩久久精品一区| 99久久综合国产精品| 成人自拍视频在线| 国产91精品在线观看| 久久亚洲综合av| 国产在线视频一区二区三区| 麻豆精品国产91久久久久久| 国产精品一区不卡| 国产精品一区二区在线看| 久久色.com| 成人综合婷婷国产精品久久 | 欧美电影免费提供在线观看| 亚洲一区国产视频| 欧美制服丝袜第一页| 一区二区三区91| 欧美日韩一卡二卡三卡| 偷拍一区二区三区| 欧美精品久久久久久久多人混战| 亚洲一区二区三区四区不卡| 欧美午夜片在线观看| 日本在线不卡一区| 欧美videossexotv100| 国产美女娇喘av呻吟久久| 亚洲国产成人私人影院tom| 欧洲一区二区av| 另类小说图片综合网| 中文字幕一区av| 日韩视频免费观看高清完整版在线观看 | 一区二区久久久久| 26uuu亚洲综合色欧美| 91丨porny丨最新| 美女一区二区三区| 亚洲欧美日本在线| 337p日本欧洲亚洲大胆精品 | 国内精品伊人久久久久av影院| 久久久久久影视| 91精品国产综合久久香蕉麻豆 | 成人久久18免费网站麻豆| 亚洲成国产人片在线观看| 国产欧美日韩在线视频| 欧美精品在线一区二区三区| 国产suv精品一区二区三区| 亚洲国产成人高清精品| 韩日精品视频一区| 日韩亚洲欧美一区| 激情文学综合丁香| 青青草97国产精品免费观看无弹窗版| 亚洲国产精品精华液2区45| 日韩午夜av一区| 777xxx欧美| 欧美日韩国产电影| 在线成人午夜影院| 欧美一区二区在线不卡| 欧美日韩一区小说| 一本大道久久a久久精二百| 国产美女视频91| 国产精品一区二区久激情瑜伽| 日本在线不卡一区| 久久疯狂做爰流白浆xx| 美女任你摸久久 | 日韩欧美一级精品久久| 欧美久久久久久久久| 欧美一区二区三区色| 欧美一区中文字幕| 欧美成人伊人久久综合网| 精品99一区二区三区| 欧美激情自拍偷拍| 亚洲欧美成人一区二区三区| 亚洲三级在线播放| 日精品一区二区| 国产成a人亚洲精品| 欧美日韩一卡二卡| 久久久久久久av麻豆果冻| 亚洲同性gay激情无套| 亚洲成人777| 成人高清视频免费观看| 色婷婷av一区二区三区软件| 成人黄色在线视频| 7777女厕盗摄久久久| 国产精品久久免费看| 亚洲成人av在线电影| 成人教育av在线| 日韩欧美亚洲一区二区| 一区在线观看免费| 久久精品72免费观看| 91在线精品秘密一区二区| 欧美一卡2卡3卡4卡| 亚洲人成人一区二区在线观看 | 国产在线精品一区在线观看麻豆| 91亚洲男人天堂| 欧美精彩视频一区二区三区| 午夜精品久久一牛影视| 97久久精品人人做人人爽50路 | 91精品国产91久久久久久最新毛片| 中文字幕不卡三区| 国产成人综合视频| 欧美成人女星排名| 一区二区三区四区乱视频| 丰满岳乱妇一区二区三区| 日韩情涩欧美日韩视频| 午夜欧美在线一二页| 欧美中文字幕久久| 亚洲午夜电影网| 欧美日韩久久不卡| 亚洲一级在线观看| 欧美午夜精品久久久久久孕妇| 国产日韩欧美综合在线| 韩国精品久久久| 国产免费久久精品| 99亚偷拍自图区亚洲| 亚洲三级免费观看| 欧美最猛黑人xxxxx猛交| 午夜精品福利久久久| 日韩欧美国产午夜精品| 成人国产精品免费| 国产精品久久综合| 色婷婷av一区二区三区之一色屋| 欧美国产精品v| 色综合天天综合狠狠| 手机精品视频在线观看| 欧美一区二区三区视频在线| 国产成人精品三级麻豆| 精品国精品自拍自在线| 欧美草草影院在线视频| 亚洲香肠在线观看| 91精品国产综合久久精品性色 | 国产精品不卡一区| 欧美欧美欧美欧美| 麻豆精品国产传媒mv男同| 国产精品毛片大码女人| 欧美一区日本一区韩国一区| 成人精品高清在线| 天天做天天摸天天爽国产一区| 国产日韩av一区二区| 欧美一级夜夜爽| 一本久久综合亚洲鲁鲁五月天 | 亚洲色图.com| 久久久久九九视频| 欧美成人精品3d动漫h| 欧美性xxxxxx少妇| 99国产精品久久久久久久久久久| 日韩av在线发布| 亚洲国产一区二区在线播放| 国产精品沙发午睡系列990531| 日韩视频在线你懂得| a级高清视频欧美日韩| 国产高清精品网站| 国产一区亚洲一区| 国产麻豆精品在线| 精品一区二区三区在线观看国产 | 男男视频亚洲欧美| 亚洲成年人网站在线观看| 一区二区三区鲁丝不卡| 亚洲尤物视频在线| 亚洲成a人片在线不卡一二三区| 亚洲人成伊人成综合网小说| 最新日韩av在线| 亚洲柠檬福利资源导航| 亚洲国产wwwccc36天堂| 日韩精品91亚洲二区在线观看| 视频一区二区欧美| 日韩国产欧美在线观看| 激情综合五月天| 成人黄色在线视频| 精品视频一区二区三区免费| 91精品国产综合久久精品| 欧美丰满少妇xxxxx高潮对白| 91精品麻豆日日躁夜夜躁| 日韩欧美视频一区| 国产精品伦理在线| 日一区二区三区| 成人av在线资源网| 欧美精品第1页| 久久久九九九九| 亚洲亚洲人成综合网络| 国产麻豆午夜三级精品| 波多野结衣在线一区| 日韩亚洲欧美一区二区三区| 国产精品网站一区| 亚洲福利视频导航| 成人精品鲁一区一区二区| 91麻豆精品国产91久久久资源速度| 国产香蕉久久精品综合网| 一区二区三区电影在线播| 国产一区二区成人久久免费影院| 在线观看网站黄不卡| 久久亚洲春色中文字幕久久久| 亚洲国产综合视频在线观看| 国产精品亚洲第一| 日韩一区二区在线观看| 亚洲成人动漫在线观看| 91蝌蚪porny九色| 日本一区二区三区高清不卡| 久久电影网站中文字幕| 欧美日本一道本| 亚洲成人一区二区在线观看| 色婷婷av一区| 亚洲一区二区三区中文字幕在线| 一本高清dvd不卡在线观看|