• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

Developing COM Components using VC-ATL(3-7)

发布: 2007-7-01 20:40 | 作者: admin | 来源: | 查看: 25次 | 进入软件测试论坛讨论

领测软件测试网

 

最后让我们分析一下C:\VCTestVCComProj\Debug\ValidateCreditCardServer.tlh作为Developing COM Components using VC-ATL(3)的结尾吧。

 

ValidateCreditCardServer.tlh清单

 


// Created by Microsoft (R) C/C++ Compiler Version 12.00.8168.0 (ad98f509).

//

// c:\vctestvccomproj\debug\ValidateCreditCardServer.tlh

//

// C++ source equivalent of Win32 type library ..\ValidateCreditCardServer\Debug\ValidateCreditCardServer.dll

// compiler-generated file created 12/19/03 at 03:29:03 - DO NOT EDIT!

 

#pragma once

#pragma pack(push, 8)

 

#include <comdef.h>

 

namespace VALIDATECREDITCARDSERVERLib {…………………………………..………名字空间

 

//

// Forward references and typedefs

//

 

struct /* coclass */ ValidateCard;………………………………………………………………..….. 组件类

struct __declspec(uuid("b1d1c73c-e340-4fdc-8734-92ecec64dc4e"))

/* dual interface */ IValidateCard;………………………………………………….………………用户接口

 

//

// Smart pointer typedef declarations

//

 

_COM_SMARTPTR_TYPEDEF(IValidateCard, __uuidof(IValidateCard));………..………智能指针

 

//

// Type library items

//

 

struct __declspec(uuid("c79635d2-7b86-4b20-a83c-0565dca54c3c"))…………………组件类CLSID

ValidateCard;

    // [ default ] interface IValidateCard

 

struct __declspec(uuid("b1d1c73c-e340-4fdc-8734-92ecec64dc4e"))……………………用户接口IID

IValidateCard : IDispatch

{

    //

    // Wrapper methods for error-handling

    //

 

    long ValidateCreditCard (

        _bstr_t bstrCCNo,

        _bstr_t bstrCCType );

    HRESULT LuhnCheck (

        _bstr_t bstrCCNo,

        _bstr_t bstrCCType );

    HRESULT LengthCheck (

        _bstr_t bstrCCNo,

        _bstr_t bstrCCType );

    HRESULT PrefixCheck (

        _bstr_t bstrCCNo,

        _bstr_t bstrCCType );……………………………………………….………….. 接口方法(对外)

 

    //

    // Raw methods provided by interface

    //

 

    virtual HRESULT __stdcall raw_ValidateCreditCard (

        BSTR bstrCCNo,

        BSTR bstrCCType,

        long * val ) = 0;

    virtual HRESULT __stdcall raw_LuhnCheck (

        BSTR bstrCCNo,

        BSTR bstrCCType ) = 0;

    virtual HRESULT __stdcall raw_LengthCheck (

        BSTR bstrCCNo,

        BSTR bstrCCType ) = 0;

    virtual HRESULT __stdcall raw_PrefixCheck (

        BSTR bstrCCNo,

        BSTR bstrCCType ) = 0;…………………………………………………..……. 接口方法(对内)

};

 

//

// Wrapper method implementations

//

 

#include "c:\vctestvccomproj\debug\ValidateCreditCardServer.tli"………….. 类型库实现文件

 

} // namespace VALIDATECREDITCARDSERVERLib……………………………..……….. 名字空间

 

#pragma pack(pop)

 


参照COM组件端C:\ValidateCreditCardServer\ValidateCreditCardServer.idl

 

ValidateCreditCardServer.idl清单


// ValidateCreditCardServer.idl : IDL source for ValidateCreditCardServer.dll

//

 

// This file will be processed by the MIDL tool to

// produce the type library (ValidateCreditCardServer.tlb) and marshalling code.

 

import "oaidl.idl";

import "ocidl.idl";

         [

                   object,

                   uuid(B1D1C73C-E340-4FDC-8734-92ECEC64DC4E),……………………………. IID部分

                   dual,

                   helpstring("IValidateCard Interface"),

                   pointer_default(unique)

         ]

         interface IValidateCard : IDispatch

         {

                   [id(1), helpstring("method ValidateCreditCard")] HRESULT ValidateCreditCard([in] BSTR bstrCCNo,[in]BSTR bstrCCType,[out,retval]long *val );

                   [id(2), helpstring("method LuhnCheck")] HRESULT LuhnCheck([in] BSTR bstrCCNo,[in]BSTR bstrCCType);

                   [id(3), helpstring("method LengthCheck")] HRESULT LengthCheck([in] BSTR bstrCCNo,[in]BSTR bstrCCType);

                   [id(4), helpstring("method PrefixCheck")] HRESULT PrefixCheck([in] BSTR bstrCCNo,[in]BSTR bstrCCType);

         };

 

[

         uuid(B3404054-C33E-4931-B737-5783CEEFECDB),………………………………… LIBID部分

         version(1.0),

         helpstring("ValidateCreditCardServer 1.0 Type Library")

]

library VALIDATECREDITCARDSERVERLib

{

         importlib("stdole32.tlb");

         importlib("stdole2.tlb");

 

         [

                   uuid(C79635D2-7B86-4B20-A83C-0565DCA54C3C),…………………….……CLSID部分

                   helpstring("ValidateCard Class")

         ]

         coclass ValidateCard

         {

                   [default] interface IValidateCard;

         };

};


小结:

Developing COM Components using VC-ATL(3)主要介绍了Visual C++与Visual Basic编写的组件的相互间的调用。在接下来一篇里将介绍双接口。

 

Developing COM Components using VC-ATL(3)完 


延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备2023014753号-2
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网