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

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

?? msado15.tli

?? 一個很不錯的
?? 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 09/05/07 at 09:12:18 - 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一区二区三区免费野_久草精品视频
国产午夜精品久久久久久免费视 | 国产精品99久久久久久久vr| 国产成人综合视频| www精品美女久久久tv| 国产一区二区三区精品视频| 久久女同精品一区二区| 国产v日产∨综合v精品视频| 国产精品天美传媒| 色综合久久88色综合天天6| 亚洲一区精品在线| 91精品国产综合久久精品图片 | 色噜噜狠狠成人网p站| 亚洲视频在线一区| 欧美精品免费视频| 国产在线视频一区二区| 国产精品超碰97尤物18| 欧美色大人视频| 美国十次了思思久久精品导航| 精品成人一区二区三区四区| 国产999精品久久| 亚洲va欧美va人人爽午夜 | 色拍拍在线精品视频8848| 国产性天天综合网| 欧美在线视频不卡| 精品伊人久久久久7777人| 中文字幕欧美激情一区| 欧美日韩专区在线| 国产69精品久久99不卡| 亚洲福利视频一区二区| 久久网站热最新地址| 99久久精品久久久久久清纯| 五月婷婷综合激情| 中文字幕免费不卡| 欧美精品三级日韩久久| 成人午夜视频福利| 欧美aaaaa成人免费观看视频| 欧美va在线播放| 色屁屁一区二区| 国产麻豆日韩欧美久久| 亚洲午夜一区二区| 国产精品麻豆一区二区| 日韩欧美一区二区在线视频| av一二三不卡影片| 成人免费一区二区三区视频 | jiyouzz国产精品久久| 亚洲成a人片在线观看中文| 精品国偷自产国产一区| 欧美日韩亚洲高清一区二区| 国产成人高清在线| 久久精品国产一区二区三区免费看| 中文字幕日韩一区| 精品国产伦理网| 欧美另类z0zxhd电影| av激情成人网| 国产乱人伦偷精品视频免下载| 亚洲大型综合色站| 国产在线视频不卡二| 亚洲一二三四久久| 国产精品传媒在线| 欧美精品一区二区三区很污很色的| 欧美综合欧美视频| 99视频超级精品| 成人免费视频一区二区| 天天av天天翘天天综合网 | 精品一区二区三区不卡| 亚洲手机成人高清视频| 久久久久久久性| 日韩欧美一级特黄在线播放| 欧美午夜电影一区| 日本道色综合久久| 91在线精品一区二区三区| 国内精品久久久久影院薰衣草| 琪琪一区二区三区| 丝袜诱惑制服诱惑色一区在线观看 | 日本中文在线一区| 日韩专区在线视频| 视频在线观看一区| 天天综合天天做天天综合| 亚洲精品你懂的| 亚洲精品精品亚洲| 亚洲精品老司机| 亚洲永久精品大片| 亚洲愉拍自拍另类高清精品| 91精品免费观看| 色播五月激情综合网| 久久久精品欧美丰满| 亚洲精品一区在线观看| 日韩精品资源二区在线| 日韩三级视频中文字幕| 日韩欧美色电影| 久久亚区不卡日本| 国产欧美一区二区三区在线老狼| 国产精品三级视频| 亚洲欧美韩国综合色| 亚洲激情五月婷婷| 无吗不卡中文字幕| 麻豆极品一区二区三区| 日本韩国欧美在线| 欧美在线999| 欧美电影精品一区二区| 国产午夜精品一区二区三区视频| 国产精品色在线| 一区二区三区四区在线免费观看| 自拍偷拍国产精品| 天天操天天色综合| 国产福利精品一区| 欧美最新大片在线看| 日韩欧美国产三级| 国产精品久久久久桃色tv| 欧美性猛片xxxx免费看久爱| 这里只有精品电影| 一区二区三区欧美在线观看| 亚洲一区二区三区四区的| 奇米在线7777在线精品| 国产乱子伦视频一区二区三区 | 91麻豆精品国产91久久久久| 久久嫩草精品久久久久| 成人免费在线观看入口| 日本中文在线一区| 波多野结衣一区二区三区| 欧美伊人久久久久久久久影院| 精品日韩欧美在线| 亚洲一区二区三区四区在线| 久久精品理论片| av成人动漫在线观看| 欧美乱妇一区二区三区不卡视频| 久久久99精品免费观看不卡| 亚洲观看高清完整版在线观看 | 欧美日本在线看| 国产欧美日韩在线| 午夜久久久久久久久| 成人午夜激情在线| 91精品婷婷国产综合久久竹菊| 日韩精品久久理论片| 爽好多水快深点欧美视频| 国产精品正在播放| 91精品国产色综合久久ai换脸 | 欧美三级视频在线| 日本一二三不卡| 久久精品国产第一区二区三区| 久久免费精品国产久精品久久久久| 亚洲精品综合在线| 国产69精品久久99不卡| 欧美大片在线观看| 午夜电影网亚洲视频| 99久久精品一区| 国产亚洲成av人在线观看导航| 蜜臀精品久久久久久蜜臀| 欧美视频自拍偷拍| 亚洲色图欧美在线| 不卡视频在线观看| 国产视频一区二区在线观看| 日本亚洲三级在线| 91精品国产欧美一区二区18 | 久久美女高清视频| 久久精品国产亚洲5555| 欧美一区二区成人| 午夜影院久久久| av激情亚洲男人天堂| 美女视频黄频大全不卡视频在线播放| 中文字幕一区二区三| 亚洲一区二区综合| 91蝌蚪国产九色| 国产精品久久二区二区| 成人性生交大片免费看视频在线| 欧美精品一区男女天堂| 午夜精品福利在线| 欧美日韩国产大片| 亚洲高清免费观看| 欧美天堂亚洲电影院在线播放| 日韩美女视频19| 99精品国产99久久久久久白柏| 亚洲国产精品成人久久综合一区 | 欧美一级片在线看| 秋霞午夜av一区二区三区| 欧美一区二区久久| 日韩高清在线一区| 日韩欧美在线123| 韩国av一区二区三区四区| 日韩高清不卡在线| 日韩一区二区三| 激情都市一区二区| 欧美激情一区二区三区四区| 成人高清视频在线观看| 亚洲男人天堂av网| 777午夜精品免费视频| 麻豆免费精品视频| 国产视频视频一区| 91在线精品一区二区| 亚洲成人精品在线观看| 欧美一区二区三区精品| 国产最新精品精品你懂的| 国产精品视频在线看| 91传媒视频在线播放| 奇米精品一区二区三区在线观看 | 国产视频一区在线播放| 成人av电影在线网| 亚洲最大成人网4388xx| 日韩视频在线一区二区| 国产成人精品免费网站|