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

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

?? msado15.tli

?? 短信發(fā)送工具
?? 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;
}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲精品v日韩精品| 麻豆91精品91久久久的内涵| 一区二区视频在线| 亚洲高清在线精品| 久久久久久影视| 亚洲摸摸操操av| 欧美aaaaaa午夜精品| 国产宾馆实践打屁股91| 欧美性大战xxxxx久久久| 欧美日韩一区高清| 国产欧美一区二区三区在线老狼| 一区二区中文视频| 亚洲国产精品自拍| 国产麻豆午夜三级精品| 91极品美女在线| 亚洲国产成人一区二区三区| 亚洲欧洲av在线| 五月天网站亚洲| 99久久精品国产毛片| 精品免费国产二区三区| 亚洲综合一区二区精品导航| 激情五月激情综合网| 狠狠色伊人亚洲综合成人| 91视频免费播放| 久久精品视频在线免费观看| 视频一区视频二区中文字幕| 国产成a人无v码亚洲福利| 日韩免费视频线观看| 亚洲成a人v欧美综合天堂 | 欧美在线制服丝袜| 国产性色一区二区| 捆绑调教美女网站视频一区| 欧美另类久久久品| 国产精品麻豆欧美日韩ww| 亚洲一区在线视频观看| 99久久综合国产精品| 久久这里只有精品视频网| 日本欧美一区二区| av在线综合网| 亚洲欧洲日韩av| 成人国产精品免费| 国产精品成人一区二区艾草 | 亚洲va天堂va国产va久| 三级欧美在线一区| 色婷婷av一区二区三区gif | 亚洲444eee在线观看| 色狠狠一区二区| 亚洲一区在线观看免费| 欧美色网站导航| 综合久久国产九一剧情麻豆| 99久精品国产| 自拍偷拍国产亚洲| 色88888久久久久久影院野外| 日韩精品久久久久久| 欧美日韩国产高清一区二区 | 在线观看91视频| 中文字幕一区二区三区色视频| 国产精品欧美一级免费| 99久久er热在这里只有精品66| 国产精品69毛片高清亚洲| 精品国产免费视频| 岛国一区二区三区| 亚洲国产欧美在线人成| 欧美日韩一区二区三区不卡| 日韩av一级片| 国产亚洲欧美日韩俺去了| 粉嫩13p一区二区三区| 一区二区三区精品在线观看| 欧美性受极品xxxx喷水| 蜜臀av国产精品久久久久| 国产精品网曝门| 欧美日韩大陆在线| 久久99国产乱子伦精品免费| 一区二区三区色| 国产三级精品在线| 欧美午夜一区二区| 韩国三级在线一区| 天堂va蜜桃一区二区三区| 亚洲国产高清aⅴ视频| 欧美一区二区三区四区五区| 国产一区二区三区综合| 日韩黄色在线观看| 亚洲蜜臀av乱码久久精品| 久久久夜色精品亚洲| 欧美日韩免费不卡视频一区二区三区| 欧美国产乱子伦| 99国产精品视频免费观看| 国产成人aaa| 日韩和的一区二区| 日韩极品在线观看| 综合在线观看色| 午夜精品视频在线观看| 一区二区三区中文在线| 国产清纯美女被跳蛋高潮一区二区久久w | 亚洲女爱视频在线| 欧美成人精品3d动漫h| 欧美美女直播网站| 欧美精品第一页| 国产精品亚洲一区二区三区妖精| 7777精品久久久大香线蕉| hitomi一区二区三区精品| 激情伊人五月天久久综合| 婷婷夜色潮精品综合在线| 亚洲图片欧美一区| 舔着乳尖日韩一区| 日产国产高清一区二区三区 | 国产精品久久久久久久久果冻传媒| 国产欧美视频在线观看| 一区二区日韩电影| 亚洲综合激情小说| 亚洲韩国一区二区三区| 日韩av二区在线播放| 亚洲精品国产a| 五月婷婷激情综合| 麻豆91免费看| 久久午夜免费电影| 自拍视频在线观看一区二区| 一区二区三区欧美亚洲| 婷婷国产v国产偷v亚洲高清| 国内精品写真在线观看| 美女精品自拍一二三四| 国产999精品久久久久久| 99麻豆久久久国产精品免费优播| 亚洲综合丁香婷婷六月香| 午夜伦理一区二区| 福利一区二区在线| 在线视频观看一区| 精品国产伦一区二区三区观看方式 | 国产乱妇无码大片在线观看| 午夜精品一区在线观看| 亚洲国产综合视频在线观看| 在线亚洲一区二区| 精品国产第一区二区三区观看体验| 97se狠狠狠综合亚洲狠狠| 99精品视频在线免费观看| 678五月天丁香亚洲综合网| 欧美电影免费提供在线观看| 亚洲精品免费在线观看| 精品一区二区在线观看| 欧美片网站yy| 亚洲欧美怡红院| 久久精品国产亚洲高清剧情介绍| 日韩欧美在线123| 精品亚洲成a人在线观看| 国产日韩欧美制服另类| 播五月开心婷婷综合| 一区二区三区欧美亚洲| 欧美成人午夜电影| 99国产欧美另类久久久精品| 亚洲在线成人精品| 精品欧美一区二区在线观看| 成人免费观看av| 亚洲一区二区在线免费观看视频| 国产乱一区二区| 玉米视频成人免费看| 欧美麻豆精品久久久久久| 国产一区二区三区免费看| 夜夜嗨av一区二区三区网页 | 日韩av一区二区在线影视| 日韩精品一区国产麻豆| 成人国产精品免费观看视频| 午夜私人影院久久久久| 国产精品人妖ts系列视频| 91精品欧美久久久久久动漫| 99精品久久只有精品| 激情欧美一区二区| 夜色激情一区二区| 亚洲三级小视频| 精品久久人人做人人爰| 在线观看日韩毛片| 成人精品高清在线| 韩国精品免费视频| 日本不卡一二三| 亚洲一区二区在线视频| 亚洲日本一区二区| 中文字幕av资源一区| 久久午夜免费电影| 日韩一级欧美一级| 欧美一区二区日韩| 91精品国产色综合久久不卡电影| 日韩精品一级中文字幕精品视频免费观看 | 日韩欧美一区中文| 欧美军同video69gay| 欧美亚洲国产怡红院影院| 日本久久精品电影| 欧美日韩一区在线| 欧美日韩国产综合一区二区 | 91麻豆swag| 成人av在线电影| 不卡av在线网| 波多野结衣91| 色综合色综合色综合| 欧美理论在线播放| 91精品综合久久久久久| 日韩你懂的在线播放| 精品日本一线二线三线不卡| 国产午夜精品一区二区三区视频| 成人视屏免费看| 97se亚洲国产综合自在线观| av中文字幕一区|