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

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

?? msado15.tli

?? 管理員登錄模塊;讀者借閱模塊;讀者規(guī)劃模塊;書(shū)籍信息模塊。
?? TLI
?? 第 1 頁(yè) / 共 5 頁(yè)
字號(hào):
// Created by Microsoft (R) C/C++ Compiler Version 12.00.8168.0 (eb1e94fb).
//
// e:\源程序\debug\msado15.tli
//
// Wrapper implementations for Win32 type library c:\Program Files\Common Files\System\ado\msado15.dll
// compiler-generated file created 06/26/08 at 13:20:12 - 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;
}

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
丰满少妇在线播放bd日韩电影| 一区二区三区在线看| 久久久久久久久97黄色工厂| 亚洲va国产va欧美va观看| 成人av电影在线网| 久久综合五月天婷婷伊人| 国内精品视频666| 久久久电影一区二区三区| 日本午夜精品视频在线观看| 日韩精品一区二区三区视频播放| 一区二区三区四区不卡在线| 精品中文字幕一区二区| 精品少妇一区二区三区日产乱码| 欧美日韩一区二区在线观看视频 | 精品综合久久久久久8888| 色av成人天堂桃色av| 毛片不卡一区二区| 欧美激情一区三区| 91香蕉国产在线观看软件| 亚洲精品乱码久久久久| 成人精品免费视频| 欧美日韩黄色影视| www.亚洲人| 国产精品欧美综合在线| 99免费精品视频| 亚洲高清视频的网址| 日韩精品一区在线| 九九久久精品视频| 久久久精品黄色| 欧美三级韩国三级日本一级| 日韩和的一区二区| 激情文学综合丁香| 中文字幕日韩精品一区 | 久久综合久久综合久久| 91精品午夜视频| 久久久www免费人成精品| 日本一区二区三区免费乱视频| 午夜欧美一区二区三区在线播放| 国产福利一区二区三区视频在线| 日韩中文字幕麻豆| 国产精品毛片高清在线完整版| 日韩一级片在线观看| 91麻豆精品国产91久久久久久| 精品国产乱子伦一区| 中文字幕成人av| 亚洲男人的天堂在线aⅴ视频| 亚洲国产日韩av| 日本成人超碰在线观看| 精东粉嫩av免费一区二区三区| 一二三四社区欧美黄| 久久精品亚洲麻豆av一区二区| 亚洲欧美偷拍三级| 亚洲色大成网站www久久九九| 国产精品久久久久久久第一福利 | 在线电影国产精品| 五月婷婷欧美视频| 国产亚洲自拍一区| 欧美日本在线观看| 久久不见久久见中文字幕免费| 精品区一区二区| 在线看国产一区| 欧美综合一区二区| 欧美日韩成人在线| 精品久久久久久久久久久久久久久 | 在线视频综合导航| 国产一区亚洲一区| 国产一区二区美女| 美女脱光内衣内裤视频久久网站| 91精品国产91热久久久做人人| 色视频一区二区| 在线视频一区二区三区| 中文字幕亚洲在| 国产精品激情偷乱一区二区∴| 国产一区视频导航| 国产精品无人区| 亚洲欧美在线视频观看| 色8久久人人97超碰香蕉987| 日韩成人免费电影| 国产一区二区三区在线观看免费视频 | 亚洲va韩国va欧美va| 2020国产精品自拍| 久久色在线视频| 久久久久久久免费视频了| 久久久久国产精品人| 秋霞av亚洲一区二区三| 国产精品一区二区久久不卡| 欧美日韩亚洲综合一区| 一本大道久久精品懂色aⅴ| 97精品久久久久中文字幕| 欧美高清你懂得| 日本一区二区三区电影| 国精产品一区一区三区mba视频 | 亚洲综合一二三区| 国产乱码精品1区2区3区| 亚洲欧洲无码一区二区三区| 欧美私人免费视频| 欧美精品一区二| 亚洲成人av中文| 欧美优质美女网站| 国产精品久久久久三级| 日本伊人精品一区二区三区观看方式| 欧美三级中文字| 久久99九九99精品| 国产欧美日韩视频一区二区| 日韩主播视频在线| 色综合天天在线| 亚洲天堂2016| 99精品视频中文字幕| 美女诱惑一区二区| 日本不卡一二三| 一区二区三区免费看视频| 久久久国产精华| 在线观看av不卡| 亚洲午夜久久久久中文字幕久| 欧美色中文字幕| 天堂av在线一区| 精品免费视频一区二区| 捆绑调教一区二区三区| 国产亚洲欧美日韩日本| 国产一区二区三区在线观看免费 | 午夜电影一区二区三区| 日韩午夜中文字幕| 色综合一区二区| 日韩黄色片在线观看| 中文一区在线播放| 国产精品国产三级国产aⅴ原创| 99久久伊人久久99| 亚洲美女屁股眼交3| 亚洲人成网站影音先锋播放| 中文字幕 久热精品 视频在线| 成人小视频免费观看| 日本伊人午夜精品| 亚洲欧美一区二区三区久本道91| 日韩小视频在线观看专区| 91在线看国产| 成人av在线电影| 精品综合久久久久久8888| 亚洲成av人片观看| 最近日韩中文字幕| 欧美激情在线免费观看| 国产视频一区不卡| 日韩精品一区二区三区中文不卡| 欧美日韩久久不卡| 欧美性做爰猛烈叫床潮| 在线观看网站黄不卡| 91在线看国产| 欧美视频中文一区二区三区在线观看| 福利91精品一区二区三区| 国产另类ts人妖一区二区| 久久精品国产亚洲一区二区三区| 偷拍亚洲欧洲综合| 天天色综合成人网| 久久精品国产99| 国产揄拍国内精品对白| 国内精品国产三级国产a久久| 美女视频一区在线观看| 精品无人码麻豆乱码1区2区| 国产美女精品一区二区三区| 高清在线观看日韩| 不卡的av电影| 欧美视频一区二区三区在线观看| 色8久久精品久久久久久蜜| 欧美精品免费视频| xvideos.蜜桃一区二区| 国产精品久久久99| 亚洲电影在线免费观看| 久久不见久久见免费视频7| 99精品在线观看视频| 6080日韩午夜伦伦午夜伦| 久久久久久久久久久99999| 国产精品传媒入口麻豆| 免费成人在线观看视频| 成人免费高清在线| 777午夜精品免费视频| 国产精品久久久久久久久免费桃花 | 欧美亚洲免费在线一区| 日韩精品在线一区二区| 亚洲国产美女搞黄色| 国产高清久久久| 欧美一区二区成人| 亚洲女同一区二区| 成人免费毛片app| 日韩欧美国产精品一区| 亚洲成a人v欧美综合天堂| 成人午夜在线视频| 久久久久久久综合日本| 日韩主播视频在线| 欧美日韩一区二区三区高清| 亚洲视频网在线直播| 99久久伊人精品| 亚洲同性gay激情无套| 国产成人自拍高清视频在线免费播放| 日韩一区二区三区免费看 | 在线看日韩精品电影| 亚洲三级免费电影| 色香蕉成人二区免费| 亚洲伦理在线免费看| 91在线小视频| 亚洲不卡在线观看| 日韩一区二区三区av|