* procvar fixes

This commit is contained in:
peter 1999-07-05 20:03:30 +00:00
parent 4d04e9766a
commit fcd419b84a
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ Var
Sel: Word;
v: longint;
Begin
Signal(SIGSEGV,signalhandler(our_sig));
Signal(SIGSEGV,signalhandler(@our_sig));
v:=$00ffffff;
Sel:=word(v);
writeln(sel);

View File

@ -55,6 +55,6 @@ begin
Dummy := TDummy.Create;
Host := THost.Create;
with Host,Dummy do
OnEvent := HandleEvent; // this is 57, 27 is ";"
OnEvent := @HandleEvent; // this is 57, 27 is ";"
Host.Trigger;
end.