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

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

?? msado15.tli

?? 一個電視臺專用的信息管理軟件源代碼
?? TLI
?? 第 1 頁 / 共 5 頁
字號:
// Created by Microsoft (R) C/C++ Compiler Version 12.00.8168.0 (84a7b997).
//
// msado15.tli
//
// Wrapper implementations for Win32 type library c:\Program Files\Common Files\System\ado\msado15.dll
// compiler-generated file created 05/22/06 at 15:04: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一区二区三区免费野_久草精品视频
国产精品对白交换视频 | 成人免费在线播放视频| 日韩免费电影网站| 欧美一卡2卡3卡4卡| 91麻豆精品国产自产在线观看一区| 欧亚一区二区三区| 91精品在线观看入口| 综合久久给合久久狠狠狠97色| 成人免费在线视频| 国产一本一道久久香蕉| 国产白丝网站精品污在线入口| av欧美精品.com| 欧美午夜精品久久久久久孕妇 | 国产一区二区三区在线观看精品| 91影视在线播放| 欧美色老头old∨ideo| 欧美一区二区视频网站| 亚洲码国产岛国毛片在线| 日韩精品乱码免费| 国产一区二区美女诱惑| 91精品婷婷国产综合久久性色| 亚洲免费观看高清完整版在线观看熊 | 在线亚洲一区二区| 91精品久久久久久久久99蜜臂| 亚洲蜜臀av乱码久久精品蜜桃| 成人黄色av电影| 日韩欧美专区在线| 国产精品免费av| 亚洲一区免费观看| 极品尤物av久久免费看| 91农村精品一区二区在线| 国产精品妹子av| 国产aⅴ精品一区二区三区色成熟| 精品国产1区2区3区| 亚洲欧美日韩在线| 99国产精品一区| 久久男人中文字幕资源站| 亚洲高清三级视频| 99久久国产综合精品色伊| 亚洲视频中文字幕| 91丨九色丨蝌蚪富婆spa| 亚洲精品一二三| 国产精品一区在线| 欧美精品黑人性xxxx| 国产精品麻豆99久久久久久| 成人午夜精品一区二区三区| 精品99久久久久久| 国产精品一色哟哟哟| 中文无字幕一区二区三区| 日韩国产欧美三级| 色婷婷一区二区三区四区| 国产精品免费免费| 色综合天天综合色综合av| 国产视频911| 国产麻豆成人传媒免费观看| 国产精品素人视频| 一本大道av伊人久久综合| 午夜激情一区二区| 欧美色成人综合| 久久99国产精品成人| 欧美激情一区二区三区四区| 欧美色网一区二区| 久久99精品久久久| 国产精品白丝在线| 91超碰这里只有精品国产| 国产电影精品久久禁18| 国产日产欧美一区二区三区| 国产一本一道久久香蕉| 亚洲一区二区偷拍精品| 26uuuu精品一区二区| 狠狠色狠狠色综合| 久久嫩草精品久久久久| 色老汉一区二区三区| 麻豆免费看一区二区三区| 精品成a人在线观看| 日本大香伊一区二区三区| 国产在线视频精品一区| 亚洲精品免费在线播放| 精品精品欲导航| 国产999精品久久久久久| 香蕉久久夜色精品国产使用方法 | 亚洲一二三区不卡| 精品久久久久av影院 | www.日韩精品| 蜜臀va亚洲va欧美va天堂| 亚洲视频免费看| 精品国产一区二区精华| 欧美日韩久久不卡| 热久久一区二区| 久久久五月婷婷| 欧美一区二区国产| 欧美午夜片在线观看| 波多野结衣在线一区| 麻豆精品一区二区综合av| 亚洲午夜久久久久久久久电影院| 久久久久99精品国产片| 欧美一卡二卡在线观看| 欧美午夜一区二区| 日韩一区二区影院| 欧美另类一区二区三区| 色综合天天在线| 国产欧美综合在线观看第十页| 69堂国产成人免费视频| 欧美亚洲禁片免费| 色乱码一区二区三区88| 成人app在线观看| 国产成a人无v码亚洲福利| 久99久精品视频免费观看| 奇米精品一区二区三区在线观看一| 一区二区成人在线视频| 欧美精品高清视频| 欧美天天综合网| 欧美写真视频网站| 欧洲av在线精品| 欧洲精品一区二区三区在线观看| 9久草视频在线视频精品| 成人黄色在线视频| 成人国产在线观看| 成人在线综合网| 成人app软件下载大全免费| 国产精品一区在线观看你懂的| 国产高清在线观看免费不卡| 国产河南妇女毛片精品久久久| 国产成人av电影免费在线观看| 国产成人精品一区二区三区四区 | 欧美一区二区三区在线观看视频| 欧美日韩精品一区二区三区 | 色综合久久88色综合天天 | 成人a级免费电影| www.亚洲在线| 欧美亚洲综合一区| 91精品国产欧美一区二区 | 欧美精选一区二区| 欧美日韩国产系列| 日韩欧美一二区| 欧美激情一区在线观看| 一区二区三区产品免费精品久久75| 一区二区三区不卡在线观看 | 亚洲专区一二三| 日韩国产欧美在线观看| 精品一区二区日韩| 国产ts人妖一区二区| 色88888久久久久久影院按摩| 欧美美女一区二区三区| 26uuuu精品一区二区| 日韩理论片中文av| 日韩精品每日更新| 成人免费看视频| 欧美日韩专区在线| 久久嫩草精品久久久久| 一区二区三区在线观看动漫| 日本美女一区二区三区| 国产超碰在线一区| 欧美男人的天堂一二区| 国产亚洲欧美一区在线观看| 亚洲亚洲人成综合网络| 国产成人精品免费| 欧美一区二区三区在线观看| 国产精品国产三级国产普通话蜜臀| 亚洲va韩国va欧美va精品| 国产精品18久久久久| 91精品中文字幕一区二区三区| 国产欧美日韩精品a在线观看| 午夜久久久久久久久久一区二区| 高清国产一区二区| 日韩欧美一级在线播放| 亚洲欧美日韩国产中文在线| 精品影视av免费| 欧美专区日韩专区| 国产精品女人毛片| 久久激情综合网| 国产成人综合在线播放| 欧美精品色一区二区三区| 国产精品欧美综合在线| 精久久久久久久久久久| 欧美日韩免费一区二区三区| 久久久久高清精品| 久久99精品久久只有精品| 欧美日韩一二三| 亚洲天天做日日做天天谢日日欢 | 欧美三级三级三级爽爽爽| 欧美国产日本视频| 国产一区在线看| 日韩一级精品视频在线观看| 亚洲大片在线观看| 欧美中文一区二区三区| 亚洲人亚洲人成电影网站色| 国产凹凸在线观看一区二区| 精品日韩在线一区| 九九国产精品视频| 日韩亚洲欧美在线| 日韩成人一区二区三区在线观看| 欧美影院午夜播放| 亚洲美腿欧美偷拍| 97se亚洲国产综合自在线| 中文字幕乱码久久午夜不卡| 国产成人综合视频| 日本一区二区免费在线观看视频| 激情六月婷婷综合| 精品精品国产高清a毛片牛牛|