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

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

?? msado15.tli

?? GemoMedia 應用 演示了其使用方法
?? TLI
?? 第 1 頁 / 共 5 頁
字號:
// Created by Microsoft (R) C/C++ Compiler Version 12.00.8168.0 (2aa2fc9d).
//
// msado15.tli
//
// Wrapper implementations for Win32 type library c:\Program Files\Common Files\System\ado\msado15.dll
// compiler-generated file created 12/07/06 at 15:33:43 - 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一区二区三区免费野_久草精品视频
亚洲视频 欧洲视频| 亚洲午夜免费福利视频| 亚洲六月丁香色婷婷综合久久 | 国产拍揄自揄精品视频麻豆| 亚洲欧洲制服丝袜| 久久精品国产色蜜蜜麻豆| 91麻豆文化传媒在线观看| 精品国产sm最大网站免费看| 亚洲国产综合人成综合网站| 成人福利电影精品一区二区在线观看 | 97成人超碰视| 欧美mv日韩mv亚洲| 日韩和欧美一区二区| 99国产一区二区三精品乱码| 精品国产免费久久| 亚洲h精品动漫在线观看| av不卡免费在线观看| 精品乱人伦小说| 欧美aa在线视频| 在线观看国产一区二区| 国产精品国产精品国产专区不蜜 | 亚洲一区二区三区美女| 成人免费视频一区二区| 国产人成亚洲第一网站在线播放 | 欧美v日韩v国产v| 丝袜美腿亚洲一区二区图片| 欧美日韩一区中文字幕| 亚洲一区二区不卡免费| 成人午夜短视频| 国产人成亚洲第一网站在线播放| 激情综合色播激情啊| 欧美成人精精品一区二区频| 天天综合网天天综合色| 欧美日韩亚州综合| 亚洲一区二区三区在线播放 | 成人国产免费视频| 久久久欧美精品sm网站| 国产成人午夜精品影院观看视频| 日韩精品一区二区三区蜜臀| 美女精品自拍一二三四| 欧美不卡一区二区| 久久不见久久见免费视频1| 日韩欧美一级在线播放| 久久成人麻豆午夜电影| 2021久久国产精品不只是精品| 狠狠色狠狠色综合日日91app| 日韩精品中文字幕一区二区三区 | 高清不卡在线观看av| 国产日韩欧美电影| 成人激情黄色小说| 亚洲免费观看在线观看| 日本黄色一区二区| 视频在线观看国产精品| www亚洲一区| 99久久免费国产| 亚洲午夜一区二区| 欧美一级专区免费大片| 九九在线精品视频| 中文字幕av一区二区三区高 | 欧美人与性动xxxx| 看国产成人h片视频| 久久久久国产精品人| 99久久免费精品| 午夜视频久久久久久| 精品国产伦理网| av资源站一区| 日韩专区中文字幕一区二区| 国产精品美女一区二区| 色呦呦国产精品| 美女视频黄久久| 亚洲欧美在线观看| 欧美精品第1页| 成人h动漫精品| 日韩精品一二三| 国产精品美女久久久久久| 欧美午夜寂寞影院| 国产精品亚洲综合一区在线观看| 一区二区三区在线播| 精品处破学生在线二十三| 色就色 综合激情| 国产一区二区三区观看| 亚洲精品你懂的| 国产网站一区二区| 51精品秘密在线观看| 成人av网站免费| 裸体在线国模精品偷拍| 亚洲免费色视频| 中文一区二区在线观看 | 色噜噜久久综合| 狠狠色丁香久久婷婷综| 亚洲成a人v欧美综合天堂下载| 国产三级精品三级在线专区| 欧美日韩国产另类一区| 91老司机福利 在线| 国产精品12区| 九九热在线视频观看这里只有精品| 一区二区日韩av| 亚洲欧洲精品一区二区三区不卡 | 国产一区二区不卡老阿姨| 亚洲在线成人精品| 最近中文字幕一区二区三区| 亚洲精品一区二区三区影院| 欧美日韩aaaaaa| 99久久精品免费看国产免费软件| 九九**精品视频免费播放| 日韩国产一二三区| 亚洲电影你懂得| 一个色妞综合视频在线观看| 亚洲日本va午夜在线影院| 欧美激情艳妇裸体舞| 国产亚洲精品中文字幕| 欧美成人高清电影在线| 91精品国产高清一区二区三区蜜臀 | 国产精品国产三级国产aⅴ中文| 欧美精品一区二区高清在线观看 | 一本大道久久精品懂色aⅴ| 成人爽a毛片一区二区免费| 国产99一区视频免费| 国产精品一区在线观看乱码| 国产mv日韩mv欧美| 成人一区二区三区视频| 国产91综合一区在线观看| 国产精品18久久久久久久久| 国产高清不卡二三区| 国产成人免费视| 不卡的av电影在线观看| 91热门视频在线观看| 欧美伊人久久久久久午夜久久久久| 色屁屁一区二区| 欧美日韩一区二区三区在线看| 欧美日韩成人综合天天影院| 欧美高清视频www夜色资源网| 在线综合亚洲欧美在线视频| 欧美一级黄色片| 欧美一级片在线| 精品盗摄一区二区三区| 国产精品美女久久久久av爽李琼| 亚洲欧美在线高清| 亚洲电影中文字幕在线观看| 图片区小说区区亚洲影院| 激情成人综合网| 成人网在线播放| 欧美亚洲自拍偷拍| 日韩欧美一卡二卡| 国产精品乱码久久久久久| 亚洲免费在线看| 捆绑变态av一区二区三区| 风流少妇一区二区| 色狠狠av一区二区三区| 欧美巨大另类极品videosbest| 欧美电视剧免费全集观看| 国产精品国产三级国产三级人妇| 亚洲成av人综合在线观看| 国产sm精品调教视频网站| 欧美视频一区二区| 国产调教视频一区| 五月综合激情网| 不卡的看片网站| 日韩欧美亚洲另类制服综合在线| 国产精品久久久久9999吃药| 人妖欧美一区二区| www.日韩av| 欧美精品一区二区三区蜜桃| 亚洲伦理在线免费看| 久久精品99国产精品日本| 91久久香蕉国产日韩欧美9色| 久久这里只有精品6| 亚洲成人tv网| 一本色道亚洲精品aⅴ| 精品精品欲导航| 亚洲综合成人在线视频| 丁香六月久久综合狠狠色| 欧美一卡二卡三卡| 一区二区三区视频在线看| 成人免费电影视频| 欧美mv日韩mv| 日产国产欧美视频一区精品| 色悠悠久久综合| 中文字幕一区在线观看| 国产在线精品视频| 日韩欧美国产三级| 五月婷婷激情综合网| 99视频一区二区| 国产精品毛片久久久久久| 国产一区二区在线影院| 日韩亚洲欧美一区二区三区| 婷婷综合另类小说色区| 在线亚洲一区观看| 17c精品麻豆一区二区免费| 国产成人精品免费在线| 日韩一区二区三区电影| 午夜一区二区三区视频| 欧美日韩在线播放三区| 一区二区视频免费在线观看| 成人黄页毛片网站| 中文字幕高清不卡| 成人动漫一区二区三区| 中文字幕一区二区三区蜜月 | 亚洲欧美日韩久久精品| av中文字幕亚洲|