Also ich habe bei EnumWindows das so gemacht:
Delphi-Quellcode:
function EnumWindowCallback(hwnd: HWND; Form: TForm1): LongBool; stdcall;
begin
// code
end;
function TForm1.InsertButton(): Boolean;
begin
EnumWindows(@EnumWindowCallback, Integer(self));
end;
Also nach Integer gecastet. Vll. löst das das Problem