Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Win32/Win64 API (native code) (https://www.delphipraxis.net/17-win32-win64-api-native-code/)
-   -   Delphi WM_COPYDATA von C++ nach Delphi (https://www.delphipraxis.net/53492-wm_copydata-von-c-nach-delphi.html)

Tubos 17. Sep 2005 16:38


WM_COPYDATA von C++ nach Delphi
 
Hi,

meine C++ - Anwendung schickt per WM_COPYDATA einen String an eine Delphi Applikation.
Leider funktioniert das nicht ganz.

Die relevanten Codeausschnitte:
Delphi:
Delphi-Quellcode:
type
  TMyRecord = packed record
    b: Boolean;
    s: string[255];
  end;
  PMyRecord = ^TMyRecord;

procedure TLoggerForm.WMCopydata(var msg: TWMCopyData);
var
  MyRecord: PMyRecord;
  b: Boolean;
  s: String;
begin
  b := PMyRecord(msg.CopyDataStruct.lpData)^.b;
  s := PMyRecord(msg.CopyDataStruct.lpData)^.s;
  memo1.Lines.Add(s);
   // Daten auswerten/kopieren
   msg.Result := 1; // erhalt bestätigen
end;
C++:
Code:
// In einer Klasse:
static void add(char *msg)
   {
      HWND logwindow = FindWindow("TLoggerForm", "LoggerForm");
      if (logwindow == NULL) MessageBox(0, "mol", "mol", 0);

      COPYDATASTRUCT MyCDS;
      MYREC MyRec;
      StringCbCopy( MyRec.string, sizeof(MyRec.string), msg );
      MyCDS.dwData = NULL;         // function identifier
      MyCDS.cbData = sizeof( MyRec ); // size of data
      MyCDS.lpData = &MyRec;          // data structure
      SendMessage( logwindow,
               WM_COPYDATA,
               (WPARAM)(HWND)NULL,
               (LPARAM) (LPVOID) &MyCDS );
   }
Wenn das C++-Proggie "Ein String" schickt, kommt "n String" an.
Wenn es " EinString EinString EinString EinString" sendet, kommt "EinString EinString EinString Ei" an.

Ich glaube, dass es an der Umwandlung zwischen Delphi-Strings und nullterminierten Strings liegt. Aber müsste das Delphi nicht automatisch machen?

mfg. Tubos

SirThornberry 17. Sep 2005 16:47

Re: WM_COPYDATA von C++ nach Delphi
 
Ein C++ String ist was ganz anderes als ein DelphiString

mit folgender Quellcodezeile sagst du Delphi das LPData ein DelphiString ist was aber gar nicht der Fall ist (ein DelphiString ist ein Pointer auf Daten)
Delphi-Quellcode:
PMyRecord(msg.CopyDataStruct.lpData)^.s

Tubos 17. Sep 2005 16:53

Re: WM_COPYDATA von C++ nach Delphi
 
Verstehe.
Hab die Zeile folgendermaßen umgeändert:
Delphi-Quellcode:
 s := string(pansistring(msg.CopyDataStruct.lpData));
und den unsinnigen Teil mit dem boolean (ohne nachzudenken aus einem Beispiel übernommen) gelöscht.

Jetzt haut alles hin, danke!


Alle Zeitangaben in WEZ +1. Es ist jetzt 14:02 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