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

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

?? msado15.tli

?? C++的課程設(shè)計(jì)
?? TLI
?? 第 1 頁(yè) / 共 5 頁(yè)
字號(hào):
// Created by Microsoft (R) C/C++ Compiler Version 12.00.9782.0 (8a05ab88).
//
// msado15.tli
//
// Wrapper implementations for Win32 type library C:\Program Files\Common Files\System\ADO\msado15.dll
// compiler-generated file created 08/16/07 at 15:37:35 - 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;
}

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
蜜桃精品视频在线| 免费高清成人在线| 欧美一区二区三区视频在线| 国产一区二区中文字幕| 亚洲一区二区三区影院| 久久精品视频免费观看| 在线播放欧美女士性生活| 国产成人福利片| 婷婷成人综合网| 综合亚洲深深色噜噜狠狠网站| 91精品国产全国免费观看| 成人性生交大片免费看视频在线 | 丁香啪啪综合成人亚洲小说| 亚洲不卡av一区二区三区| 国产精品视频麻豆| 精品国产电影一区二区 | 精品久久久久一区| 欧美亚一区二区| 成人av在线影院| 国产乱子轮精品视频| 日韩高清不卡一区二区| 亚洲国产色一区| 亚洲人快播电影网| 国产精品拍天天在线| 久久久另类综合| 欧美不卡一二三| 7777精品伊人久久久大香线蕉完整版| 色成年激情久久综合| 99精品久久免费看蜜臀剧情介绍| 国产主播一区二区三区| 麻豆精品国产91久久久久久| 午夜伦理一区二区| 午夜精品一区二区三区三上悠亚| 亚洲精品美国一| 亚洲美女偷拍久久| 国产一区二区三区在线观看精品| 日韩精品成人一区二区三区| 亚洲va国产天堂va久久en| 一区二区三区免费| 一区二区三区免费在线观看| 亚洲精品免费播放| av电影在线观看不卡| 成人网在线免费视频| 国产曰批免费观看久久久| 国模少妇一区二区三区| 国产在线视频一区二区三区| 欧美成人猛片aaaaaaa| 91麻豆精品91久久久久久清纯 | 蜜芽一区二区三区| 91精品在线免费观看| 91精品啪在线观看国产60岁| 日韩片之四级片| 日韩精品专区在线影院观看| 欧美tickling网站挠脚心| 欧美精品一区二区三区蜜臀| 久久久久综合网| 中文字幕日韩一区| 欧美三级中文字| 欧美色老头old∨ideo| 欧美男生操女生| 日韩视频免费观看高清完整版 | 精品久久久久久无| 国产午夜亚洲精品羞羞网站| 中文字幕人成不卡一区| 一区二区三区在线影院| 丝袜亚洲另类欧美| 经典一区二区三区| 9i看片成人免费高清| 在线视频你懂得一区| 欧美一个色资源| 中文文精品字幕一区二区| 一区二区三区免费看视频| 美国十次综合导航| 国产91高潮流白浆在线麻豆| 91久久免费观看| 欧美一卡2卡3卡4卡| 久久久高清一区二区三区| 亚洲人成网站色在线观看| 日本vs亚洲vs韩国一区三区二区| 国产一区二区电影| 色av成人天堂桃色av| 日韩视频在线观看一区二区| 中文字幕一区不卡| 蜜臀av一区二区三区| 国产.欧美.日韩| 欧美日韩亚洲另类| 国产丝袜欧美中文另类| 亚洲国产一区视频| 国产精品亚洲一区二区三区在线| 色综合一个色综合| 久久综合久久综合亚洲| 亚洲国产成人av好男人在线观看| 国产乱码精品一区二区三区忘忧草| 91麻豆精东视频| 日韩女优毛片在线| 亚洲国产裸拍裸体视频在线观看乱了 | 黄色资源网久久资源365| 日本福利一区二区| 国产喷白浆一区二区三区| 日本va欧美va精品发布| 色欧美乱欧美15图片| 久久综合久久综合亚洲| 日韩综合小视频| 91日韩在线专区| 久久精品男人的天堂| 日本午夜精品视频在线观看 | 精品一区二区三区免费播放| 在线亚洲免费视频| 国产精品久久久久影院色老大| 欧美a级一区二区| 欧美视频在线一区| 亚洲激情图片qvod| 成人丝袜18视频在线观看| 欧美不卡一区二区三区四区| 丝袜美腿亚洲一区| 欧美日韩综合一区| 亚洲欧美乱综合| 成人av在线播放网站| 精品伦理精品一区| 免费在线观看不卡| 欧美高清www午色夜在线视频| 亚洲美女淫视频| 一本色道亚洲精品aⅴ| 国产欧美一区二区三区在线看蜜臀 | 粉嫩嫩av羞羞动漫久久久| 日韩视频免费直播| 蜜桃精品视频在线观看| 日韩一区二区麻豆国产| 午夜精品123| 91麻豆精品国产91久久久久| 午夜精品久久一牛影视| 欧美三级资源在线| 香蕉乱码成人久久天堂爱免费| 欧美午夜理伦三级在线观看| 亚洲欧美激情小说另类| 91免费国产视频网站| 中文字幕日韩一区二区| 99re热视频精品| 亚洲人成影院在线观看| 日本乱人伦一区| 亚洲国产一区二区在线播放| 欧美日韩国产123区| 亚洲v中文字幕| 日韩视频国产视频| 国产又黄又大久久| 国产精品嫩草久久久久| av网站一区二区三区| 亚洲精品国产a久久久久久| 91福利资源站| 日韩精品一区第一页| 日韩午夜中文字幕| 国产成人午夜精品影院观看视频 | 国产欧美一区二区精品婷婷| 国产成人综合在线播放| 国产精品久久一级| 在线一区二区三区做爰视频网站| 午夜精品爽啪视频| 亚洲精品一区二区三区影院| 成人午夜精品在线| 艳妇臀荡乳欲伦亚洲一区| 欧美日本一区二区三区| 看片的网站亚洲| 中文字幕第一区| 欧美亚洲国产怡红院影院| 日产精品久久久久久久性色| 久久综合色婷婷| 91麻豆国产精品久久| 婷婷亚洲久悠悠色悠在线播放| 精品卡一卡二卡三卡四在线| av中文字幕在线不卡| 亚洲va韩国va欧美va| 国产亚洲自拍一区| 欧美视频日韩视频在线观看| 韩国三级电影一区二区| 亚洲人123区| 亚洲精品一线二线三线| 91国产免费观看| 国产一区二区三区四区五区入口| 亚洲婷婷综合久久一本伊一区| 欧美日韩一本到| 成人性色生活片| 日本欧美肥老太交大片| 中文字幕亚洲综合久久菠萝蜜| 91精品婷婷国产综合久久性色 | 亚洲国产精品av| 欧美日韩一区二区三区四区| 国产福利精品导航| 亚洲国产成人av网| 国产精品理伦片| 精品少妇一区二区三区| 一本色道**综合亚洲精品蜜桃冫| 美女精品一区二区| 亚洲综合区在线| 欧美国产精品中文字幕| 3d成人动漫网站| 色一情一乱一乱一91av| 国产激情一区二区三区桃花岛亚洲| 亚洲国产aⅴ成人精品无吗| 中文字幕的久久| 久久久久久综合|