![]() |
Übersetzung C++ nach Delphi
Hallo zusammen,
Kann mir jemand folgende C++ Zeile nach Delphi bersetzen und erklären? spFileIO->PutaWMStream((stdIWMStream *)spStream.GetInterfacePtr()); Gruß Steppo |
Re: Übersetzung C++ nach Delphi
Delphi-Quellcode:
oder villeicht reicht auch
spFileIO.PutaWMStream((spStream.GetInterfacePtr() as (stdIWMStream )));
Delphi-Quellcode:
spFileIO.PutaWMStream(spStream.GetInterfacePtr());
|
Re: Übersetzung C++ nach Delphi
Herzlichen Dank!
Gruß Steppo |
Re: Übersetzung C++ nach Delphi
oder
Delphi-Quellcode:
ach ja, Delphi braucht garnich soviele Klammern :stupid:
spFileIO.PutaWMStream(stdIWMStream(spStream.GetInterfacePtr));
Delphi-Quellcode:
spFileIO.PutaWMStream(spStream.GetInterfacePtr as stdIWMStream);
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 22:59 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz