Language:
Русский
English
{Ovrinit.PAS}
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
{Sample code for the OvrInit procedure.}
uses Overlay;
begin
OvrInit('EDITOR.OVR');
if OvrResult <> ovrOk then
begin
case OvrResult of
ovrError: Writeln('Program has no overlays.');
ovrNotFound: Writeln('Overlay file not found.');
end;
Halt(1);
end;
end.