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

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

?? msado15.tli

?? 本系統(tǒng)屬于小型的局域網(wǎng)監(jiān)控系統(tǒng)
?? TLI
?? 第 1 頁 / 共 5 頁
字號:
// Created by Microsoft (R) C/C++ Compiler Version 12.00.8168.0 (f21460f1).
//
// g:\工作\sk\局域網(wǎng)視頻監(jiān)控\server\release\msado15.tli
//
// Wrapper implementations for Win32 type library C:\\Program Files\\Common Files\\System\\ado\\msado15.dll
// compiler-generated file created 01/07/08 at 16:21:04 - 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久久人人澡| 高清beeg欧美| 色综合 综合色| 亚洲精品在线网站| 一区二区三区欧美日韩| 国产中文一区二区三区| 99久久国产综合精品色伊| 91成人免费电影| 久久伊人中文字幕| 偷窥国产亚洲免费视频 | 精品一二线国产| voyeur盗摄精品| 日韩一区二区电影| 亚洲一级二级三级| 色综合久久天天| 国产欧美日韩不卡免费| 日韩va欧美va亚洲va久久| 99re这里都是精品| 久久久久久久一区| 视频一区视频二区在线观看| 在线视频国产一区| 亚洲免费观看在线视频| 99re成人在线| 亚洲人成亚洲人成在线观看图片| 精品一区二区三区免费观看| 欧美疯狂性受xxxxx喷水图片| 亚洲一区二区三区四区在线观看| 成人午夜免费av| 亚洲婷婷在线视频| 色av成人天堂桃色av| 亚洲一区自拍偷拍| 欧美精品自拍偷拍动漫精品| 亚洲aⅴ怡春院| 这里只有精品电影| 国模套图日韩精品一区二区| 精品日产卡一卡二卡麻豆| 色94色欧美sute亚洲线路二 | 高清国产一区二区| 亚洲影院久久精品| 337p粉嫩大胆噜噜噜噜噜91av| 狠狠色2019综合网| 国产精品不卡一区二区三区| 色欧美乱欧美15图片| 免费av网站大全久久| 国产欧美日韩中文久久| 色呦呦一区二区三区| 日本怡春院一区二区| 中文字幕av资源一区| 欧美日韩一区二区三区视频| 国产在线视频不卡二| 亚洲色图欧洲色图| 26uuu亚洲婷婷狠狠天堂| 99精品国产91久久久久久| 手机精品视频在线观看| 国产日韩欧美精品一区| 91美女在线看| 久久99精品国产| 亚洲精品第一国产综合野| 欧美一区二区三区视频在线观看| 国产揄拍国内精品对白| 亚洲gay无套男同| 国产视频一区不卡| 制服丝袜亚洲播放| 91网址在线看| 国产精品白丝av| 日韩av一级片| 亚洲成人动漫av| 一区二区三区在线不卡| 欧美激情中文不卡| 国产性色一区二区| 久久久久国产精品厨房| 精品国产髙清在线看国产毛片| 精品视频色一区| 欧美特级限制片免费在线观看| 成人av集中营| 在线一区二区三区四区| 色综合久久久久久久久久久| 不卡av在线免费观看| 一本一道久久a久久精品综合蜜臀| 精品一区二区三区免费视频| 国产一区二区精品久久99| 国产91精品欧美| av在线不卡电影| 欧美三级日韩三级国产三级| 在线播放视频一区| 欧美一区二区观看视频| 久久亚洲精华国产精华液| 1024成人网| 亚洲日本成人在线观看| 久久久久久久性| 精品伦理精品一区| 免费成人深夜小野草| 午夜精品久久久久久久久| 国模一区二区三区白浆| 日韩精品一区二区三区老鸭窝| 亚洲成人精品一区二区| 色婷婷狠狠综合| 亚洲精品日韩一| 欧美亚洲综合另类| 午夜国产不卡在线观看视频| 欧美日本一道本在线视频| 亚洲一区二区三区美女| 欧美日韩一区三区| 国内精品免费**视频| 欧美高清在线精品一区| 波多野结衣在线aⅴ中文字幕不卡| 久久精品在线观看| 99久精品国产| 亚洲国产日韩a在线播放性色| 欧美丰满少妇xxxbbb| 国产成人av电影免费在线观看| 亚洲视频1区2区| 91精品一区二区三区在线观看| 一区二区久久久久久| 91精品国产一区二区| 国产不卡一区视频| 美女久久久精品| 亚洲一区二区三区爽爽爽爽爽| 911精品产国品一二三产区| 国产91高潮流白浆在线麻豆| 日韩精品乱码av一区二区| 中文字幕免费不卡| 91精品国产综合久久蜜臀| 播五月开心婷婷综合| 久久电影网站中文字幕| 亚洲视频免费在线观看| 精品国产亚洲在线| 在线电影欧美成精品| av网站免费线看精品| 韩国一区二区三区| 日本不卡一区二区三区| 国产精品盗摄一区二区三区| 久久综合久色欧美综合狠狠| 欧美一区二区网站| 91啪亚洲精品| www.爱久久.com| 丰满放荡岳乱妇91ww| 懂色av中文一区二区三区| 麻豆免费精品视频| 日日摸夜夜添夜夜添国产精品| 中文字幕一区二区三区av| 国产精品丝袜黑色高跟| 亚洲少妇最新在线视频| 一区二区三区在线不卡| 亚洲一区二区三区中文字幕 | 欧美一区二区三区思思人| 99精品国产热久久91蜜凸| eeuss鲁一区二区三区| 91福利在线导航| 6080亚洲精品一区二区| 日韩精品一区在线| 国产欧美日韩三区| 中文字幕综合网| 午夜精品久久久久久| 麻豆久久久久久久| 成人黄色777网| 欧美精品一级二级三级| 日韩精品一区二区三区在线观看 | 欧美精品一区二区三区在线播放| 国产日韩精品久久久| 亚洲精品精品亚洲| 日本成人在线看| 不卡av电影在线播放| 日韩欧美一区在线观看| 国产精品免费网站在线观看| 亚洲国产一区视频| av一区二区三区黑人| 2023国产精品自拍| 亚洲午夜精品网| 99久久国产免费看| 国产网站一区二区三区| 偷拍亚洲欧洲综合| 欧美日韩一级片在线观看| 欧美精彩视频一区二区三区| 水蜜桃久久夜色精品一区的特点| av激情成人网| 综合欧美一区二区三区| av色综合久久天堂av综合| 久久久精品天堂| 精品中文字幕一区二区小辣椒| 欧美日韩亚洲综合在线 欧美亚洲特黄一级| 国产色一区二区| 国产精品 欧美精品| 久久久影视传媒| 国产成人av一区| 国产精品久久久久久福利一牛影视| 国产激情视频一区二区三区欧美| 337p日本欧洲亚洲大胆精品| 久久精品72免费观看| 亚洲精品在线观看视频| 国产一区二区福利| 国产精品久久久久久久第一福利| 成人动漫一区二区| 亚洲激情男女视频| 欧美一区中文字幕| 国产精品一区三区|