Registriert seit: 10. Sep 2004
Ort: Dülmen
464 Beiträge
Delphi 7 Professional
|
Re: Convert sample from platform SDK to Delphi
21. Dez 2006, 16:47
Zitat von Remko:
Code:
dwBytes += (sbstrADsPath.Length() + 1) * sizeof(WCHAR);
dwBytes := (length(sbstrADspath) + 1) * SizeOf(WChar); // Or use Inc here as Olli suggests?
Must be
dwBytes := dwBytes + ((length(sbstrADspath) + 1) * SizeOf(WChar));
otherwise you get a false value.
Inc(dwBytes, (length(sbstrADspath) + 1) * SizeOf(WChar));
is possbile also.
Stefan "Geht nicht!" ist keine Fehlerbeschreibung und "Hab ich schon versucht!" keine Antwort!
Hey, it compiles! Ship it!
|