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

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

?? msado15.tli

?? 還是一些小小的程序
?? TLI
?? 第 1 頁(yè) / 共 5 頁(yè)
字號(hào):
// Created by Microsoft (R) C/C++ Compiler Version 12.00.8168.0 (988cc9cf).
//
// e:\程序\vc\vc項(xiàng)目開發(fā)全程實(shí)錄\tm\局域網(wǎng)視頻監(jiān)控\server\debug\msado15.tli
//
// Wrapper implementations for Win32 type library C:\\Program Files\\Common Files\\System\\ado\\msado15.dll
// compiler-generated file created 01/17/08 at 15:23:51 - 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;

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲欧洲国产日本综合| 国产精品黄色在线观看| 99re这里只有精品首页| 亚洲第一av色| 国产日韩精品视频一区| 欧美伦理影视网| 成人午夜电影网站| 日韩中文字幕一区二区三区| 日本一区二区综合亚洲| 欧美电影一区二区| 91麻豆免费视频| 丁香婷婷深情五月亚洲| 日本成人在线网站| 亚洲欧美日韩一区二区 | 色综合一区二区三区| 久久成人羞羞网站| 亚洲成人www| ㊣最新国产の精品bt伙计久久| 日韩欧美一区在线观看| 欧美影视一区二区三区| 91在线观看高清| 激情欧美日韩一区二区| 日韩高清不卡一区| 亚洲最新在线观看| 亚洲欧美综合另类在线卡通| 久久九九久久九九| 亚洲一二三四在线观看| 中文字幕欧美国产| 国产视频一区二区三区在线观看 | 欧美视频一区二区三区| 99久久精品久久久久久清纯| 国产一区二区三区美女| 日日摸夜夜添夜夜添国产精品| 亚洲线精品一区二区三区 | 亚洲国产精品欧美一二99| 中文字幕乱码亚洲精品一区| 久久久综合网站| 精品久久国产老人久久综合| 欧美一级片在线看| 在线播放一区二区三区| 欧美色图天堂网| 欧美午夜免费电影| 欧美美女视频在线观看| 这里只有精品电影| 日韩精品一区二区在线观看| 日韩欧美国产综合| 精品免费日韩av| 久久理论电影网| 欧美激情综合网| 国产精品久久久久久久久搜平片 | 久久精品一区四区| 中文字幕国产一区二区| 国产精品剧情在线亚洲| 亚洲精品一二三区| 丝袜诱惑亚洲看片| 免费成人美女在线观看.| 久久电影网电视剧免费观看| 国产激情偷乱视频一区二区三区| 国产成人亚洲综合色影视| 福利电影一区二区三区| 97久久超碰精品国产| 91福利区一区二区三区| 欧美精品v日韩精品v韩国精品v| 日韩一区二区三区电影在线观看| 日韩精品中文字幕一区二区三区| 久久蜜桃av一区二区天堂| 自拍偷自拍亚洲精品播放| 一区二区三区免费| 日韩av电影免费观看高清完整版| 久久狠狠亚洲综合| 懂色中文一区二区在线播放| 一本色道亚洲精品aⅴ| 欧美日韩一区二区三区视频| 欧美大度的电影原声| 国产欧美综合在线| 一区二区免费在线播放| 久久精品久久综合| 成人精品视频一区| 欧美无砖砖区免费| 日韩一区二区在线免费观看| 欧美国产精品专区| 午夜精品一区二区三区三上悠亚| 国产综合一区二区| 91捆绑美女网站| 91精品国产美女浴室洗澡无遮挡| 久久久国产精品不卡| 国产乱码精品一区二区三| 91在线精品一区二区三区| 在线播放91灌醉迷j高跟美女| 国产精品欧美极品| 亚洲制服丝袜av| 宅男噜噜噜66一区二区66| 精品成人免费观看| 亚洲午夜在线视频| 国产成人精品午夜视频免费| 欧美日韩欧美一区二区| 国产精品女主播av| 蜜桃一区二区三区在线观看| 色视频一区二区| 欧美精品一区二区三区视频| 亚洲综合在线观看视频| 国产精品一区二区果冻传媒| 欧美三级乱人伦电影| 中文字幕免费观看一区| 欧美aa在线视频| 在线视频中文字幕一区二区| 久久久国产精品午夜一区ai换脸| 日韩精品视频网| 成人黄色网址在线观看| 欧美精品一区二区三区很污很色的| 亚洲一区二区三区激情| 91亚洲精品一区二区乱码| 久久免费的精品国产v∧| 日本视频免费一区| 欧美午夜理伦三级在线观看| 国产精品久久久久影院色老大| 国产一区二区三区免费| 日韩一区二区三区精品视频 | 午夜精品在线看| 色综合久久综合| 国产精品久久久久一区| 国产sm精品调教视频网站| 久久免费偷拍视频| 久久91精品国产91久久小草| 日韩一级片网站| 日韩精品午夜视频| 91精品午夜视频| 视频一区二区三区中文字幕| 欧美性大战久久久久久久蜜臀| 亚洲日本va在线观看| 91在线视频在线| 亚洲视频一区在线观看| 色综合天天综合网天天狠天天| 国产精品美女久久久久久久久久久| 国产在线国偷精品免费看| 久久久久99精品一区| 国产大陆亚洲精品国产| 久久久久久久精| 国产成人综合视频| 欧美国产欧美综合| 99久久er热在这里只有精品15| 国产精品嫩草影院av蜜臀| 成人国产在线观看| 亚洲欧洲韩国日本视频| 99精品在线免费| 日韩理论片中文av| 91首页免费视频| 一个色综合网站| 欧美片在线播放| 亚洲成人动漫av| 欧美电视剧在线看免费| 水野朝阳av一区二区三区| 欧美三级资源在线| 理论电影国产精品| 26uuu国产电影一区二区| 国产成人免费av在线| 国产亚洲视频系列| 99re在线精品| 亚洲综合视频在线观看| 欧美图区在线视频| 捆绑调教一区二区三区| 91麻豆精品国产91久久久 | 欧美视频一区二区三区四区| 亚洲成av人片观看| 欧美福利视频导航| 国产麻豆午夜三级精品| 国产精品久久久久久户外露出| 欧美亚洲另类激情小说| 蜜臀99久久精品久久久久久软件| 欧美精品一区二区三区蜜臀| av中文字幕亚洲| 亚洲视频资源在线| 日韩欧美一区电影| 日韩黄色免费网站| 欧美激情资源网| 欧美日韩一区二区在线观看 | 国产一区二区中文字幕| 中文字幕一区在线观看视频| 欧美性xxxxxx少妇| 久久成人精品无人区| 国产精品卡一卡二卡三| 欧美视频日韩视频在线观看| 国产精品自产自拍| 亚洲国产精品精华液网站| 日韩一二在线观看| 99re6这里只有精品视频在线观看 99re8在线精品视频免费播放 | 欧美日韩一级片网站| 麻豆91在线看| 亚洲精品v日韩精品| 91精品国产综合久久久久久久 | 粉嫩蜜臀av国产精品网站| 亚洲电影第三页| 日韩一区二区三区在线观看| 91色九色蝌蚪| 国产一区在线观看视频| 亚洲三级在线免费观看| 精品国产一区二区国模嫣然| 成人听书哪个软件好| 免费av成人在线| 日本一区二区三区国色天香|