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

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

?? msado15.tli

?? 實現了數字證書的制作、SSL安全通訊、加解密操作等功能
?? 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/11/03 at 17:41:46 - 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;
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91成人在线观看喷潮| 国产精品福利av| 国产精品国产馆在线真实露脸| 天堂蜜桃一区二区三区| www.视频一区| 欧美精品一区二区三区一线天视频| 亚洲激情男女视频| 国产**成人网毛片九色 | 日本aⅴ亚洲精品中文乱码| 国产成人午夜精品影院观看视频| 91麻豆精品久久久久蜜臀| 中文字幕一区二区三区在线播放| 国产酒店精品激情| 日韩你懂的在线播放| 亚洲大片一区二区三区| 91网站黄www| 欧美精品一区二区不卡 | 亚洲女同女同女同女同女同69| 久久99久久99精品免视看婷婷| 欧美日韩一二三| 亚洲国产日韩a在线播放性色| 91免费国产在线观看| 中文字幕亚洲电影| 国产传媒日韩欧美成人| 国产日韩精品久久久| 国产一区二区福利| 精品国产免费一区二区三区四区| 日韩成人精品在线观看| 欧美精选一区二区| 午夜成人免费电影| 884aa四虎影成人精品一区| 午夜精品久久久久久久99水蜜桃 | 日韩小视频在线观看专区| 亚洲第一狼人社区| 欧美日韩国产小视频| 天堂在线一区二区| 91精品综合久久久久久| 免费成人在线观看视频| 精品国产精品网麻豆系列| 精品综合免费视频观看| 26uuu国产日韩综合| 国产成人精品影院| 日韩久久一区二区| 欧美日韩在线电影| 日韩中文字幕1| 精品日韩99亚洲| 国产成人av影院| 亚洲欧美日韩国产综合| 欧美日韩久久久久久| 免费成人你懂的| 久久久亚洲欧洲日产国码αv| 成人激情动漫在线观看| 亚洲欧洲中文日韩久久av乱码| 欧美色区777第一页| 国内精品国产成人| 综合精品久久久| 在线精品视频免费播放| 看片网站欧美日韩| 国产精品久久久久影院色老大| 欧美性xxxxx极品少妇| 久久国产精品露脸对白| 国产精品九色蝌蚪自拍| 91麻豆精品国产91久久久使用方法| 日本不卡的三区四区五区| 国产蜜臀97一区二区三区| 色播五月激情综合网| 久99久精品视频免费观看| 亚洲天堂成人网| 精品日韩成人av| 日本道色综合久久| 国产乱人伦精品一区二区在线观看 | 亚洲欧洲在线观看av| 5858s免费视频成人| av成人免费在线观看| 蜜臀99久久精品久久久久久软件| 国产性色一区二区| 在线电影院国产精品| 波多野洁衣一区| 免费高清在线一区| 一区二区三区 在线观看视频| 精品国产精品一区二区夜夜嗨| 欧美最猛黑人xxxxx猛交| 成熟亚洲日本毛茸茸凸凹| 免费久久精品视频| 午夜精品免费在线观看| 亚洲色图丝袜美腿| 国产午夜精品理论片a级大结局| 5月丁香婷婷综合| 欧美视频在线观看一区| 91美女视频网站| 国产99久久精品| 国产综合色在线| 青青草国产精品97视觉盛宴| 亚洲一区二区三区中文字幕| 国产精品久久久久久久久搜平片| 亚洲精品一区二区精华| 日韩色在线观看| 欧美群妇大交群中文字幕| 欧美专区日韩专区| 91欧美一区二区| 91香蕉视频污| av毛片久久久久**hd| 成人av电影在线播放| 国产成人高清视频| 国产黄色91视频| 成人亚洲一区二区一| 国产乱码精品一区二区三区忘忧草 | 国产欧美精品在线观看| 精品国产电影一区二区| 精品久久国产老人久久综合| 日韩一区二区三区免费观看| 欧美日韩的一区二区| 制服丝袜成人动漫| 制服丝袜中文字幕一区| 7777精品伊人久久久大香线蕉 | 在线亚洲免费视频| 色综合久久99| 欧美日韩一区小说| 91精品国产综合久久蜜臀| 在线成人免费视频| 欧美大片在线观看一区| 久久久99精品免费观看不卡| 久久久久久久久97黄色工厂| 欧美国产精品劲爆| 亚洲三级免费观看| 亚洲国产欧美日韩另类综合| 亚洲图片欧美视频| 午夜a成v人精品| 奇米一区二区三区av| 精品亚洲porn| 国产高清亚洲一区| 91视频91自| 欧美日韩日本视频| 久久综合色婷婷| 亚洲色图在线播放| 偷窥国产亚洲免费视频| 久久国产精品99久久人人澡| 懂色av一区二区三区免费观看 | 精品久久久久久最新网址| 久久你懂得1024| 亚洲乱码国产乱码精品精可以看 | 国产不卡视频一区二区三区| 91在线观看污| 欧美高清视频一二三区| 国产三级精品三级| 亚洲国产人成综合网站| 国产呦精品一区二区三区网站| 成人av第一页| 欧美日韩一级片在线观看| 久久久五月婷婷| 亚洲精品视频一区| 国产综合久久久久久鬼色| 色综合亚洲欧洲| 欧美tickling挠脚心丨vk| 一区二区视频在线| 激情丁香综合五月| 色综合天天综合网天天看片| 欧美videos中文字幕| 亚洲人成精品久久久久久| 国产一区二区三区久久悠悠色av | ww久久中文字幕| 一区二区三区精品久久久| 国产成人免费在线观看| 欧美电影在哪看比较好| 亚洲欧美一区二区三区极速播放| 麻豆精品在线看| 欧美日韩精品一区二区三区四区| 亚洲国产精品成人综合色在线婷婷 | 天堂av在线一区| 波多野结衣在线一区| 精品三级在线看| 五月婷婷综合网| 欧美在线视频全部完| 欧美激情一区二区三区| 久久91精品久久久久久秒播| 欧美日韩一区高清| 亚洲天堂中文字幕| 国产成人精品亚洲午夜麻豆| 欧美精品一区男女天堂| 麻豆精品新av中文字幕| 欧美日韩视频在线一区二区| 亚洲欧美日韩成人高清在线一区| 国产精品一区一区| 久久夜色精品一区| 久久不见久久见免费视频7| 欧美肥妇bbw| 亚洲成人综合在线| 欧美日韩激情一区| 一区二区三区av电影 | 成人永久看片免费视频天堂| 精品美女被调教视频大全网站| 爽好多水快深点欧美视频| 在线看国产日韩| 亚洲午夜久久久久| 欧美性一区二区| 五月激情综合色| 日韩一区二区三区电影在线观看| 午夜精品久久久久久久99水蜜桃 | 91精品国产一区二区| 亚洲va欧美va天堂v国产综合|