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

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

?? msado15.tli

?? 一個ADO數據庫調用的病人收費系統的程序
?? TLI
?? 第 1 頁 / 共 5 頁
字號:
// Created by Microsoft (R) C/C++ Compiler Version 12.00.8168.0 (5cc2e2ac).
//
// msado15.tli
//
// Wrapper implementations for Win32 type library C:\Program Files\Common Files\System\ado\msado15.dll
// compiler-generated file created 12/14/07 at 18:08:33 - 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一区二区三区免费野_久草精品视频
欧美一区二区三区性视频| 国产精品久久久久久久浪潮网站| 久久婷婷国产综合精品青草| 亚洲视频免费在线| 精品亚洲国产成人av制服丝袜 | 性做久久久久久免费观看欧美| 国产大片一区二区| 欧美一区二区在线播放| 一区二区免费看| 99视频超级精品| 久久久久久久综合日本| 久久综合综合久久综合| 欧美日韩国产综合一区二区| 综合av第一页| 成人一区二区三区| 久久久亚洲午夜电影| 麻豆精品一区二区综合av| 91黄色免费看| 亚洲欧美激情插| 99re亚洲国产精品| 中文子幕无线码一区tr| 国产精品99久久久久久久女警| 日韩午夜av电影| 天天色综合天天| 4hu四虎永久在线影院成人| 亚洲精品免费在线观看| 色综合久久66| 亚洲激情中文1区| 色悠悠亚洲一区二区| 亚洲欧美一区二区在线观看| 懂色av一区二区三区免费看| 国产亚洲短视频| 大胆亚洲人体视频| 国产精品的网站| 91色九色蝌蚪| 亚洲精品国产精华液| 在线亚洲人成电影网站色www| 亚洲日本青草视频在线怡红院| 99久久伊人精品| 夜夜精品视频一区二区| 欧美丝袜自拍制服另类| 午夜精品久久久久久久久| 91精品久久久久久蜜臀| 韩国av一区二区三区在线观看| 久久综合色鬼综合色| 成人福利视频网站| 玉米视频成人免费看| 欧美老年两性高潮| 久久97超碰国产精品超碰| 日本一区二区免费在线| 91福利小视频| 青青青伊人色综合久久| 久久久久久亚洲综合影院红桃| caoporn国产一区二区| 一区二区三区美女视频| 91精品国产色综合久久| 精品亚洲欧美一区| 亚洲黄色小视频| 日韩美女一区二区三区| 成人av网站在线观看| 午夜欧美电影在线观看| 国产亚洲精品中文字幕| 91国偷自产一区二区开放时间 | 欧美一区二区视频在线观看2020| 久久99久久精品欧美| **欧美大码日韩| 欧美丰满少妇xxxxx高潮对白| 国产一区二区三区在线看麻豆| 国产精品久久久久久久蜜臀| 这里是久久伊人| proumb性欧美在线观看| 丝瓜av网站精品一区二区| 久久精品夜夜夜夜久久| 欧美日韩情趣电影| 成人福利视频在线| 美女诱惑一区二区| 亚洲欧美国产高清| 久久女同性恋中文字幕| 欧美日韩高清在线播放| 懂色av一区二区在线播放| 美女一区二区视频| 亚洲一区二区三区四区五区中文| 久久伊人中文字幕| 欧美一级理论片| 欧美性一二三区| av中文字幕一区| 国产盗摄一区二区| 免费在线欧美视频| 偷拍自拍另类欧美| 亚洲精品国产精品乱码不99 | jlzzjlzz欧美大全| 极品少妇一区二区| 日韩av午夜在线观看| 亚洲成a人v欧美综合天堂下载| 国产精品久久久久aaaa樱花 | 亚洲少妇30p| 精品久久国产老人久久综合| 欧美日韩国产在线播放网站| 99精品欧美一区二区三区小说| 激情久久久久久久久久久久久久久久| 亚洲综合激情小说| 亚洲三级电影全部在线观看高清| 亚洲国产成人自拍| 久久蜜桃一区二区| www激情久久| 久久久亚洲午夜电影| 精品av综合导航| 欧美成人vr18sexvr| 日韩手机在线导航| 日韩欧美一区二区不卡| 日韩欧美亚洲国产另类| 日韩欧美在线综合网| 欧美电视剧在线观看完整版| 精品欧美乱码久久久久久1区2区| 欧美一区永久视频免费观看| 制服丝袜中文字幕一区| 91麻豆精品国产91久久久| 欧美一区二区三区啪啪| 欧美一区二区成人| 精品国产伦一区二区三区观看方式| 精品对白一区国产伦| 久久一留热品黄| 国产精品少妇自拍| 亚洲日本乱码在线观看| 亚洲无人区一区| 日本少妇一区二区| 久久成人免费日本黄色| 国产精品综合网| 91视频com| 3d动漫精品啪啪1区2区免费 | 欧美人妖巨大在线| 欧美一级高清片在线观看| 久久婷婷国产综合国色天香| 国产精品免费人成网站| 一区二区三区在线免费| 日韩影视精彩在线| 国产精品99久久久久| 色综合久久综合| 欧美日本韩国一区二区三区视频 | 国产精品自拍在线| 99精品欧美一区二区三区综合在线| 91亚洲精品乱码久久久久久蜜桃| 欧美亚洲国产bt| 亚洲精品一区二区三区精华液| 国产欧美一区二区精品性色 | 国产一区二区三区av电影| 风间由美中文字幕在线看视频国产欧美 | 欧美大度的电影原声| 久久精品人人爽人人爽| 亚洲精品水蜜桃| 国产在线观看免费一区| 91麻豆自制传媒国产之光| 这里只有精品免费| 欧美国产亚洲另类动漫| 午夜精品123| www.爱久久.com| 日韩精品一区二区三区蜜臀 | 欧美系列日韩一区| 久久婷婷综合激情| 婷婷中文字幕一区三区| 粉嫩欧美一区二区三区高清影视| 欧美午夜精品一区二区蜜桃| 国产亚洲一本大道中文在线| 亚洲不卡在线观看| 99久久久国产精品免费蜜臀| 精品免费国产一区二区三区四区| 亚洲欧美国产毛片在线| 国产在线不卡一区| 在线不卡欧美精品一区二区三区| 亚洲欧洲日韩一区二区三区| 久久精品二区亚洲w码| 精品视频在线看| 国产精品国产精品国产专区不片| 美脚の诱脚舐め脚责91| 欧美日韩精品一区二区| 亚洲日本丝袜连裤袜办公室| 国产一区二区三区av电影| 欧美一二三四区在线| 亚洲国产日韩在线一区模特| 972aa.com艺术欧美| 国产精品美女久久久久久久久久久| 日本91福利区| 欧美日韩一区二区三区在线看| 国产精品毛片久久久久久| 国产成人免费在线| 精品av久久707| 国产一区亚洲一区| 欧美精品一区二区三区四区| 日本伊人色综合网| 欧美精品xxxxbbbb| 日韩精品三区四区| 91精品国产色综合久久ai换脸| 亚洲国产精品欧美一二99| 日本韩国一区二区三区| 一区二区免费视频| 在线观看91精品国产入口| 夜夜嗨av一区二区三区中文字幕| 色视频一区二区| 亚洲自拍另类综合| 欧美日韩一区二区在线观看视频 |