亚洲欧美第一页_禁久久精品乱码_粉嫩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 09/06/08 at 10:26:58 - 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一区二区三区免费野_久草精品视频
日本欧洲一区二区| 亚洲免费观看在线观看| 国产在线一区二区| 久久久国产一区二区三区四区小说 | 日韩亚洲欧美中文三级| 日本一道高清亚洲日美韩| 欧美第一区第二区| 成人性生交大片免费| 亚洲精品视频免费观看| 欧美一区二区三区在线| 国产麻豆视频精品| 综合色中文字幕| 欧美日韩久久一区二区| 精品一二线国产| 国产精品超碰97尤物18| 欧美日韩国产乱码电影| 国产真实乱子伦精品视频| 国产精品国产自产拍高清av| 欧美午夜在线观看| 激情综合一区二区三区| 亚洲免费观看在线观看| 日韩欧美国产综合| av一区二区三区在线| 首页欧美精品中文字幕| 国产欧美一区二区在线| 欧美视频日韩视频在线观看| 国产麻豆视频一区| 亚洲国产精品一区二区久久| 精品国产一区二区在线观看| 色欧美片视频在线观看| 国产美女视频91| 亚洲不卡一区二区三区| 久久久久久久久久久久久久久99 | 亚洲乱码中文字幕综合| 日韩欧美色综合| 91麻豆123| 国模无码大尺度一区二区三区| 亚洲丝袜美腿综合| 日韩精品最新网址| 在线精品视频免费观看| 国产精品亚洲成人| 日本一区中文字幕| 一区二区三区不卡视频在线观看| 久久久影院官网| 日韩区在线观看| 欧美日韩一级二级| 色偷偷久久一区二区三区| 国产精品一区二区视频| 日韩av一二三| 亚洲一线二线三线视频| 国产精品久久久99| 久久久久久免费| 日韩欧美视频在线| 6080亚洲精品一区二区| 欧美午夜电影在线播放| 色哟哟精品一区| av成人免费在线观看| 国产精品亚洲午夜一区二区三区 | 欧美激情一区在线| 精品国产区一区| 日韩一区二区高清| 欧美高清hd18日本| 欧美日韩精品是欧美日韩精品| 色94色欧美sute亚洲13| 日本韩国欧美一区| 色综合一区二区| av午夜精品一区二区三区| 精品一区二区成人精品| 久久精品国产第一区二区三区| 五月激情六月综合| 亚洲h在线观看| 日韩av二区在线播放| 日本中文在线一区| 日韩电影在线免费看| 日韩vs国产vs欧美| 日本vs亚洲vs韩国一区三区二区 | 成人小视频免费在线观看| 激情久久五月天| 国产一区二区伦理| 国产精品一区二区91| 国产成人在线色| 成人h动漫精品| 91性感美女视频| 欧美丝袜丝交足nylons| 欧美一区二区三区四区高清| 日韩丝袜美女视频| 国产拍揄自揄精品视频麻豆| 国产精品少妇自拍| 一区二区三区精品在线| 亚洲成人动漫在线免费观看| 捆绑紧缚一区二区三区视频 | 波多野结衣在线aⅴ中文字幕不卡| 成人毛片视频在线观看| 一本在线高清不卡dvd| 欧美日韩激情在线| 精品粉嫩aⅴ一区二区三区四区| 国产午夜亚洲精品午夜鲁丝片| 国产精品久久99| 亚洲已满18点击进入久久| 久久精品久久久精品美女| 国产激情视频一区二区三区欧美| 99精品视频一区二区三区| 欧美主播一区二区三区| 日韩美女在线视频| 国产精品伦理在线| 亚洲成人av一区| 国产又黄又大久久| 91久久精品午夜一区二区| 91精品国产色综合久久ai换脸| 久久久美女艺术照精彩视频福利播放| 国产精品久久久久毛片软件| 亚洲大片精品永久免费| 国产精品夜夜嗨| 欧美精品乱码久久久久久 | 精品欧美一区二区久久| 国产精品理伦片| 日韩av网站免费在线| 成人高清视频在线观看| 欧美一二区视频| 1024成人网| 国产麻豆视频精品| 欧美裸体bbwbbwbbw| 国产精品区一区二区三区| 午夜精品久久久久久| www.一区二区| 精品少妇一区二区三区免费观看 | 不卡免费追剧大全电视剧网站| 欧美日韩国产高清一区二区三区 | 亚洲成人免费av| 欧美日韩一区二区三区在线看| 91丨九色丨黑人外教| 在线播放日韩导航| 国产精品精品国产色婷婷| 日韩和欧美一区二区| 91色视频在线| 国产女主播视频一区二区| 日本亚洲免费观看| 欧美在线观看18| 国产精品传媒在线| 极品美女销魂一区二区三区免费| 日本乱码高清不卡字幕| 欧美国产日韩a欧美在线观看| 奇米亚洲午夜久久精品| 久久精品视频网| 蜜桃传媒麻豆第一区在线观看| 成人av手机在线观看| 亚洲综合一二区| 丁香婷婷综合色啪| 欧美成人性福生活免费看| 亚洲国产你懂的| 91在线无精精品入口| 国产精品乱码一区二区三区软件| 黄页网站大全一区二区| 777午夜精品视频在线播放| 夜夜嗨av一区二区三区网页| 99久久久精品免费观看国产蜜| 国产欧美视频一区二区| 国产精品资源网站| 久久久五月婷婷| 国产一区二区不卡| 国产欧美中文在线| 国产一区激情在线| 日本一区二区三区高清不卡| 91精品办公室少妇高潮对白| 亚洲欧美日韩国产综合在线| av电影一区二区| 亚洲女爱视频在线| 欧美亚洲动漫另类| 亚洲一区二区在线免费看| 欧美日韩激情在线| 午夜精品爽啪视频| 亚洲伦理在线免费看| 成人福利电影精品一区二区在线观看 | 国产91对白在线观看九色| 久久久久国产精品厨房| 成人伦理片在线| 日韩伦理av电影| 在线观看国产一区二区| 亚洲图片一区二区| 日韩欧美国产综合一区| 国产精品白丝jk白祙喷水网站| 中文字幕乱码一区二区免费| 99精品视频一区二区三区| 又紧又大又爽精品一区二区| 欧美在线不卡一区| 奇米色一区二区| 久久久蜜桃精品| 91香蕉国产在线观看软件| 亚洲最色的网站| 欧美一个色资源| 国产99一区视频免费| 综合中文字幕亚洲| 欧美男同性恋视频网站| 精彩视频一区二区| 最新成人av在线| 7777精品久久久大香线蕉| 国产一区在线不卡| 亚洲男同性恋视频| 日韩你懂的在线播放| 99这里只有精品|