I'm trying to create a dll with delphi, I set some file attributes but then I want to run a .exe file from the working directory. I tried to run the exe file with this code
ShellExecute(Handle, 'open', 'start.exe', nil, nil, SW_SHOWNORMAL);
But I get errors: Undeclared identifier 'Handle'.
Undeclared identifier 'SW_SHOWNORMAL'
What would be the best way to run the exe file ?