Say I have a Shutdown, function that checks if its logged in if it isn't re logs and re runs that set function/procedure.
How can I pass the function back through?
like Shutdown(Function Name);
Thanks
Mat
Say I have a Shutdown, function that checks if its logged in if it isn't re logs and re runs that set function/procedure.
How can I pass the function back through?
like Shutdown(Function Name);
Thanks
Mat
^^
Simba Code:Procedure Shutdown(Name: Function: Boolean);
Begin
Name();
End;
Function Name: Boolean;
Begin
Result := False;
End;
Begin
Shutdown(@Name);
End.
I am Ggzz..
Hackintosher
There are currently 1 users browsing this thread. (0 members and 1 guests)