亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
国产91精品欧美| 久久日韩粉嫩一区二区三区| 91精品国产91综合久久蜜臀| 国产日韩成人精品| 天使萌一区二区三区免费观看| 国产成人免费xxxxxxxx| 欧美日韩亚洲综合在线 欧美亚洲特黄一级| 欧美videos中文字幕| 亚洲国产精品自拍| 91理论电影在线观看| 久久久99精品久久| 久久99深爱久久99精品| 这里只有精品免费| 一区二区三区四区不卡视频| 国产超碰在线一区| 久久久综合九色合综国产精品| 五月天丁香久久| 欧美丝袜丝交足nylons图片| 国产精品丝袜一区| 国产精品一区二区久久不卡| 日韩一区二区三区四区| 偷拍与自拍一区| 欧美在线综合视频| 亚洲精品国产a| 91在线高清观看| 中文字幕在线一区二区三区| 成人妖精视频yjsp地址| 国产亚洲精品aa午夜观看| 激情国产一区二区| 精品黑人一区二区三区久久 | 国产综合久久久久久鬼色| 欧美一区二区三区四区在线观看 | 久久99精品网久久| 欧美成人精品福利| 国内精品伊人久久久久av一坑| 日韩一区二区三区四区| 激情五月激情综合网| 精品国产百合女同互慰| 国产在线乱码一区二区三区| 久久亚洲精华国产精华液| 国产乱对白刺激视频不卡| 2023国产一二三区日本精品2022| 国产综合色在线| 日本一区二区动态图| 99久久99久久精品免费观看| 亚洲另类在线制服丝袜| 欧美日韩在线精品一区二区三区激情 | 亚洲黄色录像片| 欧美日韩一区二区三区四区| 天天综合网天天综合色| 日韩无一区二区| 国产精品一二三区在线| 国产精品成人一区二区三区夜夜夜| 成人av片在线观看| 亚洲国产精品影院| ww久久中文字幕| bt欧美亚洲午夜电影天堂| 亚洲午夜免费视频| 精品欧美一区二区在线观看| 成人美女视频在线观看18| 亚洲一二三四区| 精品国产凹凸成av人网站| 91香蕉视频在线| 午夜电影久久久| 中文字幕欧美激情| 欧美精品久久天天躁| 国产伦精品一区二区三区免费 | 色哟哟国产精品| 免费欧美在线视频| 亚洲欧洲精品一区二区三区| 欧美日韩国产中文| 国产成人精品三级麻豆| 亚洲一区二区免费视频| 久久午夜老司机| 欧美午夜理伦三级在线观看| 国产不卡视频在线观看| 五月婷婷色综合| 国产精品国产三级国产aⅴ入口| 51精品国自产在线| 91麻豆国产福利在线观看| 精品一二三四区| 亚洲国产精品一区二区尤物区| 国产免费观看久久| 日韩欧美视频一区| 欧美亚洲国产一区二区三区va| 黄色精品一二区| 肉肉av福利一精品导航| 亚洲色图欧洲色图| 亚洲国产精华液网站w | 51午夜精品国产| 99国产精品久| 国产成人a级片| 美日韩一区二区| 亚洲高清三级视频| 一区二区三区中文免费| 中文字幕国产一区| 2020国产精品自拍| 欧美sm美女调教| 日韩午夜av一区| 3d成人动漫网站| 久久九九久久九九| 欧美成人性福生活免费看| 欧美日韩综合在线| 色妹子一区二区| 97se亚洲国产综合自在线| 国产成人午夜精品5599| 国产综合一区二区| 精品系列免费在线观看| 久久精品国产精品亚洲综合| 日韩专区中文字幕一区二区| 亚洲成人动漫在线观看| 亚洲一区二区三区三| 一级日本不卡的影视| 亚洲免费观看高清完整版在线观看熊 | 日韩女优电影在线观看| 精品国产1区二区| 精品国产一二三区| 久久人人97超碰com| 26uuuu精品一区二区| 欧美电视剧在线看免费| 日韩欧美成人一区| 久久久国产一区二区三区四区小说| 精品处破学生在线二十三| 亚洲精品一区二区三区蜜桃下载| 欧美精品一区二区久久婷婷| 久久夜色精品国产欧美乱极品| 久久久三级国产网站| 中文字幕第一区第二区| 亚洲色欲色欲www| 亚洲自拍偷拍欧美| 日本不卡免费在线视频| 国产揄拍国内精品对白| 成人一二三区视频| 欧美综合欧美视频| 欧美一区二区三区免费观看视频| 精品久久久久久久久久久久包黑料 | 亚洲欧洲三级电影| 一区二区理论电影在线观看| 天天免费综合色| 国产成a人无v码亚洲福利| 色综合久久久久网| 欧美日韩dvd在线观看| 久久在线观看免费| 亚洲欧美日韩国产手机在线 | 国产麻豆成人精品| 91网页版在线| 日韩亚洲电影在线| 亚洲日本乱码在线观看| 日韩精品成人一区二区三区 | 精品一区二区在线免费观看| 丁香婷婷综合五月| 欧美男女性生活在线直播观看| 久久综合色综合88| 一区二区三区免费网站| 韩国女主播一区| 欧美性色综合网| 亚洲国产精品成人综合色在线婷婷| 亚洲一区在线观看视频| 岛国一区二区在线观看| 3d动漫精品啪啪1区2区免费 | av高清久久久| 日韩欧美国产系列| 亚洲美女屁股眼交| 国内精品免费在线观看| 欧美精品丝袜久久久中文字幕| 久久久五月婷婷| 免费人成在线不卡| 欧洲精品视频在线观看| 欧美极品美女视频| 麻豆精品久久精品色综合| 91国产免费看| 国产精品色呦呦| 捆绑调教一区二区三区| 精品视频资源站| 亚洲天堂精品视频| 成人精品免费看| 久久久精品国产免费观看同学| 婷婷六月综合网| 欧美午夜精品免费| 日韩一区在线免费观看| 国产一区二区三区四| 日韩一区二区三区电影 | 国产成人精品一区二区三区网站观看 | 欧美中文字幕久久| 亚洲欧洲av在线| 成人黄色在线看| 中文字幕精品在线不卡| 国产iv一区二区三区| 日韩午夜av电影| 久久超碰97中文字幕| 日韩亚洲欧美在线| 美腿丝袜亚洲三区| 欧美一级黄色录像| 天堂久久久久va久久久久| 欧美日韩夫妻久久| 日韩和的一区二区| 在线不卡免费av| 免费高清在线一区| 日韩免费视频一区二区| 精品一区二区三区在线观看国产|