CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: SAFEARRAY

  1. #1
    Join Date
    Apr 2000
    Posts
    737

    SAFEARRAY

    i have a declaration like this in idl file

    HRESULT test(SAFEARRAY(VARIANT)* Data);

    how do i declare the equipvalent in C++ ?

    i try

    HRESULT test(SAFEARRAY* Data);

    but doesn't seems to work...please help, thanks



    HTH

    cksiow
    http://vblib.virtualave.net - share our codes

  2. #2
    Join Date
    Mar 2002
    Location
    Izhevsk, Udmurtia, Russia
    Posts
    930

    Re: SAFEARRAY

    You may look at XXX.H genereted by MIDL compilier from your XXX.IDL.
    HRESULT test(SAFEARRAY * * Data);



    With best wishes,
    Vita
    With best wishes,
    Vita
    -----------------------
    Russian Software Development Network -- http://www.rsdn.ru

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured