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

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

?? msado15.tli

?? 本系統屬于小型的局域網監控系統
?? TLI
?? 第 1 頁 / 共 5 頁
字號:
// Created by Microsoft (R) C/C++ Compiler Version 12.00.8168.0 (207d4671).
//
// msado15.tli
//
// Wrapper implementations for Win32 type library C:\\Program Files\\Common Files\\System\\ado\\msado15.dll
// compiler-generated file created 01/02/08 at 16:24:06 - 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一区二区三区免费野_久草精品视频
午夜精品久久久久久| 国产精品538一区二区在线| 精品亚洲欧美一区| 91网站在线观看视频| 中文字幕电影一区| 国产精品66部| 国产精品情趣视频| 成人av网址在线观看| 国产日本欧美一区二区| 国产精品123| 亚洲三级电影全部在线观看高清| 成人午夜大片免费观看| 国产精品丝袜黑色高跟| 成人97人人超碰人人99| 亚洲美女淫视频| 日本伦理一区二区| 午夜在线成人av| 8x8x8国产精品| 韩国成人在线视频| 日韩欧美激情四射| 国产一区二区三区| 欧美高清在线视频| 日本韩国一区二区三区视频| 亚洲一区在线观看免费| 91麻豆精品国产91久久久久久| 婷婷国产在线综合| 欧美电影免费观看高清完整版| 精品一区二区三区在线观看国产| 国产亚洲综合在线| 成人精品免费看| 亚洲欧洲日产国码二区| 在线观看日韩av先锋影音电影院| 午夜视频一区二区三区| 日韩亚洲欧美在线观看| 久久se精品一区二区| 久久九九久精品国产免费直播| 国产精品一二三在| 亚洲免费观看高清在线观看| 日韩三级在线免费观看| 国产91高潮流白浆在线麻豆 | 国产aⅴ综合色| 亚洲视频资源在线| 欧美一区二区三区精品| 国产91精品露脸国语对白| 亚洲一区在线视频| 日本一区二区三区久久久久久久久不 | 亚洲日本在线a| 在线综合亚洲欧美在线视频 | 精品综合久久久久久8888| 最新不卡av在线| 欧美一级二级在线观看| 99久久综合精品| 免费在线欧美视频| 亚洲男人的天堂在线观看| 日韩丝袜美女视频| 国内精品视频一区二区三区八戒| 中文字幕一区免费在线观看| 欧美日韩国产123区| 国产一区三区三区| 亚洲成人在线免费| 国产精品美女久久久久aⅴ国产馆| 欧美性极品少妇| 国产一区二区三区四| 午夜视频在线观看一区二区三区| 国产午夜精品一区二区三区视频| 欧美无砖砖区免费| bt7086福利一区国产| 激情五月婷婷综合| 天天综合色天天综合色h| 亚洲免费观看高清完整版在线 | ㊣最新国产の精品bt伙计久久| 9191成人精品久久| 成人综合婷婷国产精品久久| 一区二区三区四区不卡在线| 精品精品国产高清a毛片牛牛| av一区二区不卡| 国产精品综合在线视频| 久热成人在线视频| 日韩国产一二三区| 性做久久久久久免费观看| 欧美韩日一区二区三区| 久久久久国产精品厨房| 日韩免费一区二区三区在线播放| 欧美性一区二区| 色婷婷综合久久久中文一区二区| 日韩精品电影在线| 亚洲天堂av一区| 1024成人网| 亚洲视频一二三| 亚洲欧洲成人精品av97| 国产精品美女久久久久久 | 国产成人av电影在线观看| 久久国产三级精品| 久久激情五月激情| 秋霞电影一区二区| 日本午夜精品视频在线观看 | 欧美日韩卡一卡二| 欧美绝品在线观看成人午夜影视| 在线免费观看一区| 欧美日本一区二区| 欧美精品一卡二卡| 91精品国产乱| 欧美成人女星排名| 欧美一级片在线看| 5566中文字幕一区二区电影| 欧美一区日本一区韩国一区| 日韩免费在线观看| 国产亚洲精品久| 亚洲桃色在线一区| 亚洲高清视频在线| 日本午夜一区二区| 国产成人免费在线视频| eeuss鲁片一区二区三区| 一本色道久久综合亚洲aⅴ蜜桃| 成人综合在线视频| 色婷婷久久久久swag精品| 欧美日韩国产一区| 欧美一区二区三区在线视频| 欧美精品一区二区久久久| 中文字幕成人av| 亚洲精品老司机| 美女视频网站黄色亚洲| 国产成人精品一区二| 波多野结衣一区二区三区| 在线观看日韩毛片| 欧美成人艳星乳罩| 精品第一国产综合精品aⅴ| 国产欧美一区二区精品性| 亚洲日本青草视频在线怡红院| 午夜视频一区二区三区| 美女网站色91| 不卡的电影网站| 欧美日韩性生活| 精品国产123| 亚洲人成网站色在线观看| 五月激情六月综合| 成人福利电影精品一区二区在线观看| 成人av电影免费在线播放| 欧美高清视频www夜色资源网| 国产午夜精品美女毛片视频| 亚洲一区二三区| 国产91丝袜在线播放| 欧美日韩一级大片网址| 中日韩av电影| 久久精品国产在热久久| 色婷婷激情久久| 久久久久久99久久久精品网站| 亚洲在线视频免费观看| 国产精品综合一区二区| 精品视频一区 二区 三区| 国产精品系列在线| 久久精品国产99| 欧美日韩高清在线播放| 1000精品久久久久久久久| 久久av老司机精品网站导航| 欧美主播一区二区三区美女| 国产精品美女视频| 国内精品嫩模私拍在线| 欧美一区二区三区日韩视频| 一区二区三区国产精品| 粉嫩欧美一区二区三区高清影视| 日韩欧美一区二区视频| 午夜精品福利视频网站| 日本高清免费不卡视频| 国产精品嫩草影院av蜜臀| 精品无人码麻豆乱码1区2区| 欧美日韩国产精品自在自线| 亚洲黄色免费网站| 不卡大黄网站免费看| 久久久91精品国产一区二区三区| 蜜桃视频第一区免费观看| 欧美丰满少妇xxxxx高潮对白| 1区2区3区欧美| 成人黄色软件下载| 国产亚洲欧美一级| 国产精品主播直播| 欧美色综合天天久久综合精品| 1000精品久久久久久久久| 国产精品一二三四五| 欧美一级淫片007| 亚洲综合激情小说| av成人老司机| 国产欧美精品在线观看| 国产成人午夜片在线观看高清观看| www精品美女久久久tv| 蜜桃视频在线观看一区二区| 欧美变态tickling挠脚心| 麻豆91精品91久久久的内涵| 欧美一区二区三区喷汁尤物| 欧美日韩极品在线观看一区| 五月天国产精品| 久久久777精品电影网影网| 97超碰欧美中文字幕| 亚洲国产sm捆绑调教视频| 精品国产3级a| 色哟哟一区二区在线观看| 日韩成人伦理电影在线观看| 国产亚洲成年网址在线观看| 在线观看精品一区| 久久综合综合久久综合|