Autor Beitrag
florida
ontopic starontopic starontopic starontopic starontopic starontopic starontopic starhalf ontopic star
Beiträge: 137

Windows 7 Home Premium, Windows XP Professional, Windows 2000
Delphi 2010 Architect
BeitragVerfasst: So 24.07.11 09:08 
Hallo, :)

ausblenden Delphi-Quelltext
1:
2:
3:
4:
function Gethwin: ^HWND;
begin
  Result := @hwin;
end;


In diesem Fall kommt die Fehlermeldung: "Bezeichner erwartet, aber '^' gefunden".

Wie kann ich ein "Pointed HWND" als Ereignistyp einer Funktion hinzufügen?

MfG

Florida
mandras
ontopic starontopic starontopic starontopic starontopic starontopic starofftopic starofftopic star
Beiträge: 433
Erhaltene Danke: 107

Win 10
Delphi 6 Prof, Delphi 10.4 Prof
BeitragVerfasst: So 24.07.11 13:03 
ausblenden Delphi-Quelltext
1:
2:
3:
4:
5:
type PHWND=^HWND;
function Gethwin: PHWND;
begin
  Result := @hwin;
end;