Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8345005
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T06:32:58+00:00 2026-06-09T06:32:58+00:00

Is it possible to pass a Delphi stream (TStream descendant) to a DLL written

  • 0

Is it possible to pass a Delphi stream (TStream descendant) to a DLL written in c/c++? DLL will be written in Microsoft c/c++. If that is not possible, how about if we use C++ Builder to create the DLL? Alternatively, are there any Stream (FIFO) classes which can be shared between Microsoft C/C++ and Delphi?

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T06:33:00+00:00Added an answer on June 9, 2026 at 6:33 am

    You can do this using IStream and TStreamAdapter. Here’s a quick example (tested in D2007 and XE2):

    uses
      ActiveX;
    
    procedure TForm1.DoSomething;
    var
      MemStream: TMemoryStream;
      ExchangeStream: IStream;
    begin
      MemStream := TMemoryFile.Create;
      try
        MemStream.LoadFromFile('C:\Test\SomeFile.txt');
        MemStream.Position := 0;
        ExchangeStream := TStreamAdapter.Create(MemStream) as IStream;
        // Pass ExchangeStream to C++ DLL here, and do whatever else
      finally
        MemStream.Free;
      end;
    end;
    

    Just in case, if you need to go the other way (receiving an IStream from C/C++), you can use TOleStream to get from that IStream to a Delphi TStream.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: pass by reference not working I was going through some of the
Is it possible to pass a request from java servlet and read that request
I have got a DLL and a program, both written with Delphi 2007. The
Is that possible to pass arguments to a HTML form in POST method by
I use Delphi/NexusDB and I build SQL (about 800 char long) at run time
I have written an application (using Delphi 2009) that allows a user to select
Is it possible (without the use of Runtime Packages or the Shared Memory DLL)
Possible Duplicate: pass parameter in g:remoteLink as result of javascript function I am trying
Possible Duplicate: Pass a PHP string to a Javascript variable (including escaping newlines) Hy,
Possible Duplicate: pass data from Action To Another Action I have a view in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.