![]() |
C/C++ Quellcode nach Delphi
Hallo,
habe folgenden C/C++ Quellcode und habe Probleme damit diesen nach Delphi umzusetzen:
Code:
LPLINECALLPARAMS pLCP;
LONG lResult; LPDWORD pdwProxyRequests; pLCP = (LPLINECALLPARAMS)ACDAlloc(sizeof(LINECALLPARAMS) + 7*sizeof(DWORD)); pLCP->dwTotalSize = sizeof(LINECALLPARAMS) + 7*sizeof(DWORD); pLCP->dwDevSpecificOffset = sizeof(LINECALLPARAMS); pLCP->dwDevSpecificSize = sizeof(DWORD) * 7; pdwProxyRequests = (LPDWORD)((LPBYTE)pLCP + sizeof(LINECALLPARAMS)); // each constant is in a DWORD at the end of LINECALLPARAMS *pdwProxyRequests++ = LINEPROXYREQUEST_SETAGENTGROUP; *pdwProxyRequests++ = LINEPROXYREQUEST_SETAGENTSTATE; *pdwProxyRequests++ = LINEPROXYREQUEST_SETAGENTACTIVITY; *pdwProxyRequests++ = LINEPROXYREQUEST_GETAGENTSTATUS; *pdwProxyRequests++ = LINEPROXYREQUEST_GETAGENTCAPS; *pdwProxyRequests++ = LINEPROXYREQUEST_GETAGENTACTIVITYLIST; *pdwProxyRequests = LINEPROXYREQUEST_GETAGENTGROUPLIST; folgendes habe ich bereits:
Delphi-Quellcode:
nur wie setze ich dieses Konstrukt um?
var
pLCP: LPLINECALLPARAMS; gr: LongInt; pdwProxyRequests: LPDWORD; begin gr:= sizeOf (TLINECALLPARAMS) + sizeOf(Integer)* 7; getMem (pLCP, gr); pLCP.dwTotalSize:= sizeOf(TLINECALLPARAMS) + 7 * sizeOf(Integer); pLCP.dwDevSpecificSize:= sizeOf(Integer) * 7; pLCP.dwDevSpecificOffset:= sizeOf (TLINECALLPARAMS); freeMem (pLCP, gr);
Code:
Viele Grüße
pdwProxyRequests = (LPDWORD)((LPBYTE)pLCP + sizeof(LINECALLPARAMS));
// each constant is in a DWORD at the end of LINECALLPARAMS *pdwProxyRequests++ = LINEPROXYREQUEST_SETAGENTGROUP; *pdwProxyRequests++ = LINEPROXYREQUEST_SETAGENTSTATE; *pdwProxyRequests++ = LINEPROXYREQUEST_SETAGENTACTIVITY; *pdwProxyRequests++ = LINEPROXYREQUEST_GETAGENTSTATUS; *pdwProxyRequests++ = LINEPROXYREQUEST_GETAGENTCAPS; *pdwProxyRequests++ = LINEPROXYREQUEST_GETAGENTACTIVITYLIST; *pdwProxyRequests = LINEPROXYREQUEST_GETAGENTGROUPLIST; Alidi |
Re: C/C++ Quellcode nach Delphi
von welchem Typ ist pdwProxyRequests? Vermutlich LPDWORD oder?
folgende Zeile ist 1 zu 1 übersetzt wohl das:
Code:
pdwProxyRequests = (LPDWORD)((LPBYTE)pLCP + sizeof(LINECALLPARAMS));
Delphi-Quellcode:
Es wird also ausgehend von pLCP (was ein Pointer ist) etwas dazu addiert um die neue Adresse zu bekommen.
pdwProxyRequests = PDWORD(Cardinal(pLCP) + sizeof(LINECALLPARAMS));
und
Code:
bedeutet wenn ich mich recht entsinne:
*pdwProxyRequests++ = LINEPROXYREQUEST_SETAGENTGROUP;
Delphi-Quellcode:
pdwProxyRequests^ = pdwProxyRequests^ + SETAGENTGROUP;
|
Re: C/C++ Quellcode nach Delphi
Code:
hi,
pdwProxyRequests = (LPDWORD)((LPBYTE)pLCP + sizeof(LINECALLPARAMS));
// each constant is in a DWORD at the end of LINECALLPARAMS *pdwProxyRequests++ = LINEPROXYREQUEST_SETAGENTGROUP; *pdwProxyRequests++ = LINEPROXYREQUEST_SETAGENTSTATE; *pdwProxyRequests++ = LINEPROXYREQUEST_SETAGENTACTIVITY; *pdwProxyRequests++ = LINEPROXYREQUEST_GETAGENTSTATUS; *pdwProxyRequests++ = LINEPROXYREQUEST_GETAGENTCAPS; *pdwProxyRequests++ = LINEPROXYREQUEST_GETAGENTACTIVITYLIST; *pdwProxyRequests = LINEPROXYREQUEST_GETAGENTGROUPLIST; in der 1. zeile: mit (LPDWORT) konvertiertst du ((LPBYTE)pLCP + ... in einen LPDWORD. mit LPBYTE konveritest du pLCP in einen LPBYTE.
Code:
*pdwProxyRequests++
Delphi-Quellcode:
in delphi
inc(^pdwProxyRequests); dereferenzierung des pointers pdwProxyRequests (das p vor pdwProxyRequests steht für pointer) und erhöhung des arguments um eins, was bedeutet: pdwProxyRequest = pdwProxyRequests + 1; oder inc(pdwProxyRequests) in delphi und asm. |
Re: C/C++ Quellcode nach Delphi
Hallo Jens,
Zitat:
Gruß Alidi |
Re: C/C++ Quellcode nach Delphi
@Mark90:
Zitat:
|
Re: C/C++ Quellcode nach Delphi
Zitat:
Code:
Die Variante mit dem doppelten Plus würde ich folgendermaßen übersetzen:
*pdwProxyRequests+ = LINEPROXYREQUEST_SETAGENTGROUP;
Delphi-Quellcode:
Denn: Ein einfaches pdwProxyRequests++ hieße inc(pdwProxyRequests). Eine Zuweisung, auch eine solche einfache, gibt in C etwas zurück, in diesem Fall, da das ++ nachgestellt wird, den ursprünglichen Wert. Dieser wird dereferenziert und ihm etwas zugewiesen. Ich halte dies auch für logisch: Der Zeiger pdwProxyRequests wird hinter die Struktur gesetzt und dorthin dann DWords gesetzt, wie es auch der Kommentar sagt.
pdwProxyRequests^ = LINEPROXYREQUEST_SETAGENTGROUP;
inc(pdwProxyRequests); Irgendwo ist man da doch froh, dass in Delphi Zuweisungen keinen Wert haben. |
Re: C/C++ Quellcode nach Delphi
Zitat:
so funktionierts jetzt:
Delphi-Quellcode:
pdwProxyRequests:= PDWORD(Cardinal(pLCP) + sizeof(TLINECALLPARAMS));
pdwProxyRequests^ := LINEPROXYREQUEST_SETAGENTGROUP; inc(pdwProxyRequests); pdwProxyRequests^ := LINEPROXYREQUEST_SETAGENTSTATE; inc(pdwProxyRequests); pdwProxyRequests^ := LINEPROXYREQUEST_SETAGENTACTIVITY; inc(pdwProxyRequests); pdwProxyRequests^ := LINEPROXYREQUEST_GETAGENTSTATUS; inc(pdwProxyRequests); pdwProxyRequests^ := LINEPROXYREQUEST_GETAGENTCAPS; inc(pdwProxyRequests); pdwProxyRequests^ := LINEPROXYREQUEST_GETAGENTACTIVITYLIST; inc(pdwProxyRequests); pdwProxyRequests^ := LINEPROXYREQUEST_GETAGENTGROUPLIST; Vielen Dank für die schnelle Hilfe. :cheers: Gruß Alidi |
Alle Zeitangaben in WEZ +1. Es ist jetzt 08:57 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