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

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

?? msado15.tli

?? c++制作固定資產(chǎn)管理系統(tǒng)
?? TLI
?? 第 1 頁 / 共 5 頁
字號:
// Created by Microsoft (R) C/C++ Compiler Version 12.00.8168.0 (a1b54737).
//
// msado15.tli
//
// Wrapper implementations for Win32 type library c:\Program Files\Common Files\System\ADO\msado15.dll
// compiler-generated file created 05/07/04 at 13:36:01 - 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, long 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
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美午夜精品久久久久久超碰| 视频在线观看国产精品| 成人小视频在线| 久久久精品黄色| 国产乱理伦片在线观看夜一区| 欧美精品一区二区久久久| 国产一区二区0| 欧美激情中文不卡| 色天使色偷偷av一区二区| 樱桃国产成人精品视频| 欧美亚洲综合在线| 日韩avvvv在线播放| 精品欧美乱码久久久久久1区2区| www.av亚洲| 亚洲精选视频在线| 在线观看91精品国产麻豆| 激情丁香综合五月| 国产精品沙发午睡系列990531| 99久久伊人网影院| 香蕉乱码成人久久天堂爱免费| 欧美一级黄色片| 国产成人av电影在线播放| 亚洲欧美一区二区三区极速播放| 欧美性生活大片视频| 老司机精品视频导航| 国产精品免费aⅴ片在线观看| 色哟哟欧美精品| 久久99久久久欧美国产| 国产精品久久久久久久久免费丝袜| av电影天堂一区二区在线| 午夜久久久久久电影| 国产亚洲污的网站| 欧美性生交片4| 国产宾馆实践打屁股91| 亚洲一二三专区| 久久久久国产精品麻豆| 欧美视频日韩视频在线观看| 精品中文av资源站在线观看| 亚洲少妇30p| 日韩欧美一区二区三区在线| 一本一道波多野结衣一区二区| 日韩成人午夜精品| 日韩美女视频一区二区| 日韩一区二区三免费高清| 99综合影院在线| 免费不卡在线观看| 亚洲精品精品亚洲| 日本一区二区免费在线| 777亚洲妇女| 91在线一区二区三区| 国内成+人亚洲+欧美+综合在线| 亚洲激情图片小说视频| 国产日韩精品一区二区浪潮av| 制服丝袜日韩国产| 在线亚洲精品福利网址导航| 国产福利一区二区三区| 日韩中文字幕麻豆| 亚洲精品国产无天堂网2021| 中文字幕av一区二区三区| 日韩欧美一二三区| 欧美日韩国产另类不卡| 97久久人人超碰| 丰满亚洲少妇av| 精品一区二区av| 日韩1区2区日韩1区2区| 亚洲一区二区三区国产| 国产精品的网站| 国产精品视频一二三区 | 日本不卡在线视频| 夜夜精品视频一区二区| 综合久久久久久| 欧美国产一区视频在线观看| 国产亚洲一区二区三区| 精品动漫一区二区三区在线观看| 欧美日韩电影一区| 欧美视频在线观看一区二区| 欧美亚一区二区| 在线观看一区二区精品视频| 99re视频这里只有精品| 成人免费观看男女羞羞视频| 国产白丝网站精品污在线入口| 国产原创一区二区三区| 韩国av一区二区三区在线观看| 看片网站欧美日韩| 韩国女主播成人在线观看| 国产精品主播直播| 粉嫩高潮美女一区二区三区| 国产高清不卡一区二区| 成人综合婷婷国产精品久久蜜臀 | 日韩精品亚洲专区| 丝袜美腿亚洲一区| 麻豆国产一区二区| 国产精品一区2区| 成人激情免费电影网址| 91香蕉视频污| 欧美日韩一区中文字幕| 91精品婷婷国产综合久久性色 | 2欧美一区二区三区在线观看视频| 欧美一级艳片视频免费观看| 欧美成人福利视频| 国产女同互慰高潮91漫画| 中文字幕av资源一区| 中文字幕在线不卡国产视频| 一区二区三区丝袜| 丝袜美腿高跟呻吟高潮一区| 另类人妖一区二区av| 国产成人精品综合在线观看| gogogo免费视频观看亚洲一| 在线免费观看日本一区| 欧美老肥妇做.爰bbww| 26uuu精品一区二区在线观看| 久久伊99综合婷婷久久伊| 国产精品看片你懂得| 午夜日韩在线观看| 国产麻豆成人精品| 色婷婷国产精品| 欧美变态tickle挠乳网站| 中文字幕在线不卡一区| 青青草97国产精品免费观看 | 亚洲欧洲三级电影| 亚洲午夜影视影院在线观看| 美女一区二区久久| 91视频观看免费| 欧美一级生活片| 欧美激情在线观看视频免费| 亚洲国产精品欧美一二99| 精品一区二区综合| 91在线码无精品| 欧美精品一区二区三区视频| 一区在线播放视频| 日韩电影一区二区三区四区| 99免费精品在线| 6080午夜不卡| 一区二区三区四区激情| 国产精品一区二区在线播放 | 91蜜桃在线免费视频| 日韩精品中文字幕在线一区| 亚洲色图欧美偷拍| 国产风韵犹存在线视精品| 4438亚洲最大| 夜夜爽夜夜爽精品视频| 福利91精品一区二区三区| 欧美日韩国产综合一区二区三区 | 亚洲一本大道在线| 成人精品高清在线| 精品国偷自产国产一区| 视频一区二区欧美| 色哟哟一区二区在线观看| 国产喷白浆一区二区三区| 喷水一区二区三区| 欧美日韩精品一区二区三区四区 | 欧美日韩国产综合一区二区| 中文字幕一区二区在线播放| 国产主播一区二区三区| 制服丝袜亚洲精品中文字幕| 亚洲国产成人高清精品| 91日韩精品一区| 国产精品久久综合| 成人av综合一区| 日本一区二区电影| 国产精品系列在线播放| 成人久久视频在线观看| 精品午夜久久福利影院 | 成人免费看视频| 国产丝袜在线精品| 国产伦精品一区二区三区免费迷| 欧美一区二区三区白人| 日韩国产精品久久| 在线播放国产精品二区一二区四区| 亚洲精品成人在线| 91久久精品国产91性色tv| 亚洲视频香蕉人妖| 欧洲一区二区三区在线| 亚洲精品va在线观看| 色先锋资源久久综合| 亚洲一区二区三区不卡国产欧美| 色婷婷av一区二区三区gif| 亚洲欧美色综合| 欧美在线视频不卡| 婷婷一区二区三区| 日韩欧美一区二区三区在线| 麻豆91精品视频| 精品国产青草久久久久福利| 国产精品一区不卡| 中文字幕在线不卡一区二区三区| 91原创在线视频| 亚洲综合网站在线观看| 欧美丝袜丝交足nylons图片| 日韩国产欧美在线播放| 26uuu精品一区二区| 国产成人午夜高潮毛片| 亚洲色欲色欲www| 91麻豆精品久久久久蜜臀| 久久se精品一区精品二区| 中文字幕欧美区| 欧美亚洲一区三区| 久久超碰97人人做人人爱| 国产精品系列在线| 欧美熟乱第一页| 国产一区二区三区综合|