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

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

?? msado15.tli

?? 企業(yè)電話語音錄音管理系統(tǒng) 通話管理和基本信息管理
?? TLI
?? 第 1 頁 / 共 5 頁
字號:
// Created by Microsoft (R) C/C++ Compiler Version 12.00.8168.0 (14680243).
//
// msado15.tli
//
// Wrapper implementations for Win32 type library C:\Program Files\Common Files\System\ado\msado15.dll
// compiler-generated file created 01/16/08 at 10:40:32 - 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精品在线观看| 国产精品久久久久久久久久久免费看 | 精品一区二区三区在线观看国产| 久久久.com| 日韩精品一区二区三区蜜臀| 91丨九色丨尤物| 成人一区在线看| 国产福利一区二区三区在线视频| 丝袜a∨在线一区二区三区不卡| 欧美一级理论片| 欧美三级蜜桃2在线观看| eeuss鲁片一区二区三区| 亚洲观看高清完整版在线观看| 国产精品蜜臀av| 久久嫩草精品久久久久| 中文字幕av一区 二区| 久久久三级国产网站| 日韩一区二区电影| 日韩三级伦理片妻子的秘密按摩| 色综合激情五月| 欧美视频完全免费看| 91行情网站电视在线观看高清版| 91色婷婷久久久久合中文| 国产不卡视频在线播放| 成人免费av资源| 韩日av一区二区| 国产一区二区剧情av在线| 国产高清在线观看免费不卡| 国产一区二区影院| 国产成人无遮挡在线视频| 国产激情一区二区三区| 不卡视频在线看| 成人av在线播放网站| 色久综合一二码| 精品视频一区 二区 三区| 欧美日韩大陆一区二区| 精品伦理精品一区| 欧美激情一区二区三区在线| 亚洲日本在线天堂| 天天操天天综合网| 久久精品国产精品亚洲精品| 国产在线看一区| 97精品超碰一区二区三区| 在线精品视频免费播放| 欧美一区二区三区四区视频| 久久精品欧美日韩| 亚洲精品国产品国语在线app| 一区二区三区四区av| 日韩专区欧美专区| 国产在线观看免费一区| 成人午夜私人影院| 在线观看区一区二| 日韩精品一区二区三区视频| 国产午夜精品一区二区三区视频| 亚洲欧美日韩国产综合在线| 偷偷要91色婷婷| 波多野结衣一区二区三区 | 日本一区免费视频| 亚洲成人在线观看视频| 国产精品羞羞答答xxdd | 爽好久久久欧美精品| 极品美女销魂一区二区三区| 精品一区二区三区免费观看| 婷婷中文字幕综合| 色综合久久久久| 欧美国产精品专区| 国产成人精品综合在线观看 | 午夜成人在线视频| 欧美伊人久久大香线蕉综合69| 日本一区二区免费在线| 国产一区二区不卡老阿姨| 日韩精品影音先锋| 国内精品国产三级国产a久久| 欧美久久一区二区| 丝袜国产日韩另类美女| 欧美日韩成人高清| 日韩成人精品视频| 日韩一区二区三免费高清| 日产国产高清一区二区三区| 欧美男同性恋视频网站| 日韩高清在线观看| 日韩精品一区二区三区在线观看| 日本va欧美va瓶| 欧美大胆一级视频| 精品亚洲国产成人av制服丝袜| 精品国产91亚洲一区二区三区婷婷| 久久电影网站中文字幕| 精品福利一区二区三区 | 91在线观看下载| 亚洲欧美一区二区不卡| 在线欧美一区二区| 首页综合国产亚洲丝袜| 日韩欧美国产一区二区三区| 国产在线一区观看| 国产精品美女一区二区三区| 91网站在线播放| 亚洲成av人在线观看| 欧美人妇做爰xxxⅹ性高电影| 日日夜夜免费精品视频| 久久午夜免费电影| 成人污污视频在线观看| 亚洲综合在线电影| 欧美一级日韩一级| 粉嫩av一区二区三区| 亚洲与欧洲av电影| 精品久久久网站| www.亚洲色图| 美女视频黄a大片欧美| 中文字幕成人在线观看| 欧美中文字幕一区二区三区亚洲| 久久超碰97中文字幕| 亚洲欧洲综合另类在线| 日韩视频中午一区| av在线免费不卡| 蜜桃视频一区二区| 亚洲精品国产第一综合99久久| 91超碰这里只有精品国产| 成人小视频免费在线观看| 丝袜亚洲另类丝袜在线| 国产欧美1区2区3区| 欧美精品99久久久**| 成人免费看的视频| 久久国产精品露脸对白| 亚洲一区二区三区四区在线免费观看 | 在线免费一区三区| 国产69精品久久99不卡| 免费观看一级特黄欧美大片| 亚洲天堂2016| 天天综合网 天天综合色| 精品电影一区二区三区| 欧美视频在线观看一区二区| 波多野结衣精品在线| 韩国女主播一区二区三区| 亚洲成人午夜电影| 亚洲三级久久久| 中文欧美字幕免费| 久久一夜天堂av一区二区三区| 欧美日韩午夜在线视频| 色婷婷狠狠综合| 波多野结衣中文字幕一区 | 亚洲成av人**亚洲成av**| 国产精品对白交换视频| 国产午夜亚洲精品羞羞网站| 欧美一区二区三区电影| 欧美精品在线观看播放| 欧美三级中文字幕在线观看| a级高清视频欧美日韩| 国产不卡视频一区| 国产精品99久久久久久似苏梦涵 | 免费在线观看精品| 日韩国产欧美在线播放| 日韩激情在线观看| 日韩高清一级片| 偷拍亚洲欧洲综合| 三级欧美韩日大片在线看| 亚洲成人免费观看| 午夜精品视频一区| 五月天国产精品| 免费在线一区观看| 美女视频一区二区三区| 久久电影国产免费久久电影| 久久99国产精品久久| 男女激情视频一区| 国产精品亚洲一区二区三区在线| 国产麻豆9l精品三级站| 国产精品一区二区果冻传媒| 国产福利不卡视频| 国产91精品一区二区麻豆网站| 高潮精品一区videoshd| 成人av一区二区三区| 一本到不卡精品视频在线观看 | 奇米888四色在线精品| 久久精品国产成人一区二区三区| 久久精品国产亚洲5555| 成人免费看的视频| 欧美午夜不卡在线观看免费| 3d动漫精品啪啪1区2区免费| 精品国产一区二区精华| 国产精品色眯眯| 婷婷久久综合九色国产成人| 极品少妇一区二区三区精品视频 | 亚洲欧美日韩中文字幕一区二区三区| 一区二区国产视频| 蜜臀va亚洲va欧美va天堂 | 最新日韩在线视频| 日韩精品成人一区二区三区| 国产剧情一区在线| 欧美色网一区二区| 久久综合狠狠综合| 亚洲一区在线视频观看| 加勒比av一区二区| 91啦中文在线观看| 日韩欧美一卡二卡| 一区二区视频在线| 国产在线播放一区| 欧美性受xxxx黑人xyx| 久久一区二区视频| 亚洲成人精品在线观看| 国产精品亚洲第一| 7777精品久久久大香线蕉|