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

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

?? msado15.tli

?? 短信發送工具
?? TLI
?? 第 1 頁 / 共 5 頁
字號:
// Created by Microsoft (R) C/C++ Compiler Version 12.00.8168.0 (40b0d750).
//
// msado15.tli
//
// Wrapper implementations for Win32 type library c:\Program Files\Common Files\System\ado\msado15.dll
// compiler-generated file created 04/26/06 at 00:24:10 - 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| proumb性欧美在线观看| 亚洲精选视频免费看| 91精品国产欧美一区二区成人 | 在线视频观看一区| 日韩高清一区二区| 国产午夜一区二区三区| 日本精品免费观看高清观看| 天天av天天翘天天综合网| 国产调教视频一区| 丁香另类激情小说| 亚洲高清在线精品| 久久精品在线免费观看| 99re6这里只有精品视频在线观看 99re8在线精品视频免费播放 | 成人午夜又粗又硬又大| 一区二区三区在线视频免费| 777午夜精品免费视频| 粉嫩一区二区三区在线看| 一区二区不卡在线播放| 精品国产一区二区亚洲人成毛片| 不卡av电影在线播放| 天天av天天翘天天综合网| 中文字幕免费观看一区| 欧美日韩另类一区| 成人av电影免费在线播放| 日韩中文字幕av电影| 国产精品乱人伦中文| 欧美一级生活片| 99久久精品国产麻豆演员表| 麻豆精品一区二区av白丝在线| 欧美国产成人精品| 91精品国产综合久久香蕉的特点 | 精品国产网站在线观看| 色天天综合色天天久久| 国产一区二区三区免费| 亚洲国产精品久久一线不卡| 国产欧美日韩视频一区二区| 欧美精品乱码久久久久久| av一区二区三区黑人| 久久99九九99精品| 亚洲成va人在线观看| 国产精品欧美一区喷水| 精品国产区一区| 91精品啪在线观看国产60岁| 91福利精品视频| 99精品国产热久久91蜜凸| 国产乱人伦偷精品视频不卡| 日本va欧美va欧美va精品| 夜色激情一区二区| 18涩涩午夜精品.www| 国产嫩草影院久久久久| 2020日本不卡一区二区视频| 欧美一区二区三区免费| 欧美日韩另类一区| 欧美午夜精品一区二区蜜桃| gogogo免费视频观看亚洲一| 国产一区啦啦啦在线观看| 久久国产福利国产秒拍| 六月丁香综合在线视频| 首页国产欧美久久| 日韩国产精品久久| 午夜av一区二区| 视频一区中文字幕| 日韩电影免费在线看| 秋霞午夜av一区二区三区| 天堂成人国产精品一区| 天堂va蜜桃一区二区三区漫画版| 天天免费综合色| 日韩电影在线观看一区| 蜜臀久久久99精品久久久久久| 日日夜夜精品视频天天综合网| 亚洲国产你懂的| 丝袜诱惑制服诱惑色一区在线观看 | 久久久久久久电影| 久久久久久97三级| 中文字幕不卡三区| 亚洲欧洲99久久| 亚洲日本va午夜在线影院| 亚洲欧美另类综合偷拍| 亚洲一区二区三区四区中文字幕| 亚洲高清中文字幕| 美国毛片一区二区三区| 国产一区二区毛片| 成人亚洲一区二区一| av亚洲精华国产精华| 色综合色综合色综合 | 成人美女视频在线观看| 色婷婷综合久色| 555夜色666亚洲国产免| 欧美一区二区久久久| 久久久久久久精| 亚洲欧美另类久久久精品2019| 午夜在线电影亚洲一区| 国产一区在线不卡| 99精品国产91久久久久久| 欧美日韩一区高清| 精品福利一区二区三区| 中文字幕一区日韩精品欧美| 亚洲在线免费播放| 九九精品一区二区| 99亚偷拍自图区亚洲| 欧美日本一道本| 久久九九影视网| 亚洲黄色av一区| 久久精品国产**网站演员| av中文字幕亚洲| 日韩午夜电影在线观看| 国产精品久久久久久久久免费樱桃 | 国产大陆亚洲精品国产| 欧洲精品一区二区| 精品国产91亚洲一区二区三区婷婷| 欧美韩国日本不卡| 日韩精品乱码免费| av在线播放一区二区三区| 7777精品伊人久久久大香线蕉经典版下载 | 日韩高清不卡一区二区| 国产精品一区二区久激情瑜伽| 欧洲一区二区三区免费视频| 久久夜色精品国产噜噜av| 尤物视频一区二区| 国产乱妇无码大片在线观看| 欧美日韩国产小视频| 中文字幕av不卡| 蜜臀av性久久久久蜜臀aⅴ四虎| 91视视频在线观看入口直接观看www| 91精品国产aⅴ一区二区| 国产精品美女久久久久久2018 | 久久蜜桃av一区精品变态类天堂 | 久久久久久亚洲综合| 午夜精品福利久久久| 91丨九色丨蝌蚪富婆spa| 欧美精品一区二区三区在线| 亚洲福利一区二区三区| aaa亚洲精品| 久久久久久久久久电影| 日韩在线一二三区| 色悠悠亚洲一区二区| 国产精品久久久一本精品| 麻豆成人久久精品二区三区红| 一本大道久久精品懂色aⅴ| 欧美激情一区二区| 国产精品资源站在线| 日韩欧美国产综合| 日韩二区三区在线观看| 欧美区一区二区三区| 一区二区三区鲁丝不卡| 色综合久久综合| 亚洲天堂福利av| 99re8在线精品视频免费播放| 久久亚洲一级片| 久久69国产一区二区蜜臀| 精品视频一区二区不卡| 一区二区视频在线看| 91片在线免费观看| 综合久久国产九一剧情麻豆| 成人午夜短视频| 国产精品素人一区二区| 国产精品一区在线观看你懂的| 日韩欧美区一区二| 久久精品国产一区二区三区免费看 | 国产亚洲成av人在线观看导航| 狠狠色狠狠色合久久伊人| 欧美精品国产精品| 免费人成精品欧美精品| 日韩欧美国产综合一区| 久久激情综合网| 久久久久国产精品人| 成人精品小蝌蚪| 亚洲欧美激情视频在线观看一区二区三区 | 国产精品久久久久精k8| 成人app网站| 亚洲一区二区三区四区在线观看 | 亚洲成av人片在线观看无码| 欧美日韩一区二区三区四区| 午夜精品久久久久久久久久久| 欧美一区二区三区影视| 久久99国产精品成人| 国产亚洲人成网站| aaa亚洲精品| 性做久久久久久免费观看欧美| 7777精品伊人久久久大香线蕉完整版 | 欧美亚洲一区二区在线观看| 午夜精品免费在线观看| 精品国产污网站| 91一区一区三区| 亚洲国产综合人成综合网站| 欧美一区二视频| 国产精品影音先锋| 亚洲乱码国产乱码精品精的特点| 欧美精品aⅴ在线视频| 国产一区在线观看麻豆| 亚洲人妖av一区二区| 制服丝袜国产精品|