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

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

?? msado15.tli

?? 超市管理系統,主要功能有商品銷售,商品進貨,會員管理等
?? 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 12/17/07 at 15:57:53 - 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一区二区三区免费野_久草精品视频
99久久久久免费精品国产| 欧美三级电影精品| 精品视频一区三区九区| 26uuu精品一区二区| 日韩一区中文字幕| 国产精品2024| 91麻豆精品国产91久久久资源速度| 国产亚洲精品超碰| 天使萌一区二区三区免费观看| 成人一区在线看| 精品噜噜噜噜久久久久久久久试看 | 国产精品一区二区三区99| 欧美日韩一区二区在线视频| 亚洲国产高清不卡| 激情五月播播久久久精品| 在线成人午夜影院| 亚洲黄色性网站| jlzzjlzz亚洲女人18| 欧美变态tickle挠乳网站| 亚洲国产美女搞黄色| 99久久国产综合精品女不卡| 亚洲国产成人私人影院tom| 伦理电影国产精品| 欧美一区二区精品久久911| 亚洲欧美另类在线| 99在线精品观看| 国产精品久久久久影院亚瑟 | 欧美性感一类影片在线播放| 亚洲视频一区在线观看| 成人手机电影网| 国产日产欧美一区| 国产伦精品一区二区三区视频青涩| 91精品国产高清一区二区三区蜜臀| 亚洲激情校园春色| 欧美日韩在线电影| 五月天网站亚洲| 欧美美女激情18p| 日韩高清不卡一区二区| 777午夜精品免费视频| 性欧美疯狂xxxxbbbb| 欧美一级xxx| 国内精品伊人久久久久av一坑| 精品免费国产二区三区| 国产麻豆精品一区二区| 久久精品一二三| jizzjizzjizz欧美| 一区二区三区在线免费观看| 91福利视频网站| 免费观看91视频大全| 精品国产1区二区| 成人激情小说网站| 亚洲精品欧美激情| 91精品久久久久久久久99蜜臂| 蜜臀国产一区二区三区在线播放| 精品国偷自产国产一区| 丁香啪啪综合成人亚洲小说| 亚洲猫色日本管| 欧美一级黄色大片| 国产精品一品视频| 一区二区三区四区亚洲| 欧美一区二区三区系列电影| 国产精品88av| 亚洲高清中文字幕| 久久亚洲影视婷婷| 色先锋久久av资源部| 免费av网站大全久久| 中文字幕巨乱亚洲| 91.xcao| 成人av综合一区| 日韩成人av影视| 国产精品不卡在线| 欧美一级片在线看| jlzzjlzz国产精品久久| 另类中文字幕网| 亚洲精品美腿丝袜| 欧美大片拔萝卜| 91视视频在线观看入口直接观看www | 欧美性一级生活| 韩国在线一区二区| 亚洲精品日韩综合观看成人91| 日韩免费高清电影| 在线日韩国产精品| 成人免费av资源| 久久9热精品视频| 亚洲国产日韩精品| 中文成人综合网| 欧美一区二区三区播放老司机 | 精品一区二区三区香蕉蜜桃| 亚洲精品国产无套在线观| 26uuu成人网一区二区三区| 色就色 综合激情| 成人免费视频app| 麻豆极品一区二区三区| 午夜精品久久一牛影视| 中文字幕一区二区日韩精品绯色| 精品少妇一区二区三区免费观看| 在线观看国产精品网站| 91污在线观看| 岛国精品一区二区| 国产在线精品一区二区夜色| 日本免费在线视频不卡一不卡二| 亚洲女厕所小便bbb| 亚洲婷婷在线视频| 国产精品久久久久久福利一牛影视| 26uuu精品一区二区| 精品久久久久久久久久久久久久久 | 国产日韩欧美综合在线| 欧美va天堂va视频va在线| 日韩亚洲国产中文字幕欧美| 91国产免费观看| 91丨九色丨蝌蚪丨老版| 成人av网站大全| 成人av动漫网站| a美女胸又www黄视频久久| 成人黄色软件下载| 99免费精品在线| 色综合久久中文综合久久牛| 99麻豆久久久国产精品免费| 国产91精品久久久久久久网曝门| 国产乱码字幕精品高清av| 九九热在线视频观看这里只有精品| 日韩福利视频导航| 久久99国产精品麻豆| 精品写真视频在线观看| 国产一区二区美女诱惑| 国内精品视频666| 国产精品88av| 99精品1区2区| 欧美性一二三区| 日韩欧美中文字幕公布| 2024国产精品| 成人免费在线播放视频| 一区二区三区成人在线视频| 午夜日韩在线电影| 国产在线视视频有精品| 播五月开心婷婷综合| 在线欧美一区二区| 在线成人高清不卡| 久久九九99视频| 亚洲人成在线观看一区二区| 亚洲国产视频在线| 国产一区久久久| av男人天堂一区| 欧美人与z0zoxxxx视频| 26uuu亚洲婷婷狠狠天堂| 国产精品午夜在线| 亚洲成人av一区二区| 国产精品一卡二| 在线视频中文字幕一区二区| 91精品国产乱| 国产精品免费视频网站| 日本特黄久久久高潮| 成人免费视频app| 欧美日韩电影一区| 久久精品视频一区| 亚洲一二三级电影| 国产成人亚洲综合色影视| 91久久香蕉国产日韩欧美9色| 4438x成人网最大色成网站| 亚洲国产成人午夜在线一区| 午夜成人免费电影| www.激情成人| 日韩精品中文字幕在线不卡尤物| 亚洲视频免费在线观看| 精品亚洲免费视频| 欧美日韩国产精品自在自线| 欧美国产日产图区| 美女在线一区二区| 欧美三级资源在线| 中文字幕巨乱亚洲| 韩国成人福利片在线播放| 欧美在线综合视频| 国产精品久久久久久久蜜臀| 秋霞电影一区二区| 欧美婷婷六月丁香综合色| 日本一二三四高清不卡| 蜜臀av国产精品久久久久| 色哦色哦哦色天天综合| 国产亚洲欧美在线| 久久超级碰视频| 3d成人h动漫网站入口| 国产精品传媒在线| 国产黄色91视频| 精品国产一区二区亚洲人成毛片 | 日韩一区二区三区免费看| 亚洲线精品一区二区三区 | 一区二区三区在线观看欧美| 成人性色生活片免费看爆迷你毛片| 日韩一区二区视频在线观看| 亚洲国产精品一区二区久久恐怖片| 成人动漫av在线| 国产精品久久久久四虎| 成人免费高清在线| 国产欧美日韩精品a在线观看| 精品在线视频一区| 337p粉嫩大胆噜噜噜噜噜91av| 蜜臀av一级做a爰片久久| 日韩一级二级三级| 青青国产91久久久久久| 正在播放一区二区|