亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
男女男精品视频网| 4438亚洲最大| 欧美久久久影院| 国产日韩欧美精品一区| 性感美女极品91精品| 成人激情图片网| 日韩午夜中文字幕| 亚洲成人手机在线| 91麻豆蜜桃一区二区三区| 欧美精品一区二区在线观看| 亚洲国产欧美日韩另类综合 | 日韩精品专区在线| 亚洲午夜影视影院在线观看| 99久久免费精品| 国产色综合一区| 国产麻豆精品视频| 日韩亚洲欧美一区| 奇米精品一区二区三区在线观看 | 成人美女视频在线观看18| 日韩欧美电影一区| 日韩中文字幕不卡| 9191久久久久久久久久久| 亚洲一区免费观看| 在线视频一区二区免费| 亚洲免费观看高清完整版在线观看 | av电影在线观看一区| 久久丝袜美腿综合| 国产精品一区一区| 国产日韩成人精品| 成人一区二区在线观看| 国产欧美日韩在线看| 国产成人在线免费| 国产精品天天看| 9l国产精品久久久久麻豆| 国产精品国产三级国产aⅴ中文| 丁香天五香天堂综合| 久久色.com| 粉嫩av一区二区三区粉嫩| 国产精品久久久久久久久免费樱桃 | 成人av网站免费观看| 亚洲视频一区二区在线观看| 91蜜桃视频在线| 亚洲精品亚洲人成人网 | 久久久久国色av免费看影院| 国产一区视频在线看| 国产肉丝袜一区二区| 夫妻av一区二区| 亚洲欧美色一区| 欧美日韩国产经典色站一区二区三区 | 国产精品高潮呻吟久久| 色悠悠亚洲一区二区| 午夜电影一区二区| 精品1区2区在线观看| 国产不卡在线播放| 亚洲综合视频网| 精品国内片67194| 成人福利在线看| 亚洲已满18点击进入久久| 3751色影院一区二区三区| 黄页视频在线91| 成人免费视频在线观看| 欧美乱妇20p| 国产大片一区二区| 亚洲成人在线网站| 久久久国产精品午夜一区ai换脸| www.欧美亚洲| 日韩黄色一级片| 国产精品久久久久久亚洲毛片 | 日韩激情视频网站| 国产精品美女久久久久久2018| 欧美在线|欧美| 国产成人在线视频网址| 欧美在线色视频| 91成人在线精品| 久久国产精品色婷婷| 亚洲乱码国产乱码精品精小说 | 99精品偷自拍| 美女视频免费一区| 伊人开心综合网| 国产亚洲欧美激情| 欧美一二三四在线| 色欧美日韩亚洲| 国产成人免费视频一区| 亚洲成人资源网| 亚洲女性喷水在线观看一区| 精品久久久久久久久久久久久久久久久 | 91精品国产福利在线观看| 99热99精品| 久久精品国产一区二区三| 亚洲精品网站在线观看| 蜜臀av一区二区在线观看 | 亚洲欧洲制服丝袜| 色综合久久88色综合天天免费| 亚洲色图.com| 在线观看网站黄不卡| 亚洲电影视频在线| 欧美一区二区三区免费| 国产剧情av麻豆香蕉精品| 亚洲欧洲美洲综合色网| 91国产福利在线| 激情都市一区二区| 中文字幕字幕中文在线中不卡视频| 欧日韩精品视频| 久久国产精品色婷婷| 亚洲欧洲日产国码二区| 欧美日韩成人综合| 国产99精品国产| 午夜久久久久久电影| 久久综合久久久久88| 91视频国产资源| 久久99精品国产麻豆不卡| 中文字幕制服丝袜成人av| 欧美精品aⅴ在线视频| 国产精品亚洲一区二区三区妖精| 亚洲精品大片www| 久久一二三国产| 欧美日韩精品系列| 国产91精品一区二区| 日本欧美一区二区在线观看| 国产精品国产三级国产普通话蜜臀| 在线电影院国产精品| 成人美女视频在线看| 美国一区二区三区在线播放| 成人免费一区二区三区在线观看| 欧美大度的电影原声| 色哟哟在线观看一区二区三区| 老司机精品视频导航| 亚洲sss视频在线视频| **性色生活片久久毛片| 久久久久久97三级| 日韩欧美在线影院| 欧美日本在线播放| 色综合色综合色综合| 成人午夜精品一区二区三区| 麻豆91在线看| 奇米一区二区三区| 丝袜国产日韩另类美女| 亚洲综合精品久久| 亚洲精选在线视频| 亚洲天堂福利av| 国产精品传媒视频| 国产精品无人区| 欧美激情一二三区| 久久久国产精品不卡| 337p粉嫩大胆噜噜噜噜噜91av | 精品一区二区三区免费毛片爱| 天堂午夜影视日韩欧美一区二区| 亚洲激情综合网| 一区二区在线看| 亚洲综合在线电影| 亚洲综合免费观看高清完整版 | 国产精品综合在线视频| 久久99精品久久久久久国产越南 | 午夜不卡av在线| 午夜亚洲国产au精品一区二区| 亚洲精品国产一区二区精华液| 亚洲欧美电影一区二区| 亚洲蜜臀av乱码久久精品蜜桃| 国产精品色噜噜| 亚洲素人一区二区| 洋洋成人永久网站入口| 亚洲狠狠爱一区二区三区| 亚洲影院免费观看| 日韩国产欧美在线观看| 免费观看日韩电影| 国产伦理精品不卡| av不卡免费在线观看| 91浏览器打开| 538在线一区二区精品国产| 在线不卡a资源高清| 2024国产精品视频| 亚洲视频一二三区| 日韩精品三区四区| 国内精品久久久久影院色| 国产a级毛片一区| 在线一区二区视频| 日韩一区二区三区免费看 | 亚洲综合丝袜美腿| 青青草伊人久久| 成人av在线播放网站| 欧美性生活久久| 日韩三级免费观看| 国产精品色在线观看| 无码av中文一区二区三区桃花岛| 久久国产精品一区二区| 91在线视频官网| 日韩一级免费一区| 亚洲三级小视频| 久久er99热精品一区二区| 成人开心网精品视频| 欧美日本免费一区二区三区| 国产欧美一区二区精品性色超碰| 亚洲精品成人悠悠色影视| 久久国产剧场电影| 欧美午夜精品久久久| 久久久www成人免费无遮挡大片| 一二三四区精品视频| 国产精品亚洲第一区在线暖暖韩国| 欧美在线色视频| 《视频一区视频二区|