i can't execute my program in lazarus does the lazarus support the wintypes and winprocs
base.pas (2,13) Fatal: Can not find WinTypes used by eg the Project Inspector.
program ex;
uses Wincrt,WinTypes, WinProcs;
var
ch:string;
procedure exe (che:string);
begin
writeln('ecrire ch');
readln(che);
if ch ='oui' then
begin
WinExec('cmd /k "C:\TPW\exercice\project\site.html"', SW_NORMAL);
end;
end;
begin
exe(ch);
end.