home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GRIPS 2: Government Rast…rocessing Software & Data
/
GRIPS_2.cdr
/
dos
/
adrg
/
source
/
mvtopos.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1989-05-31
|
246 bÂ
|
12 lines
PROCEDURE MOVE_TO_POSITION (VAR FV:FILE; POS:LONGINT);
BEGIN
{$I-}
SEEK(FV,POS);
{$I+}
IF (IORESULT <> 0) THEN
BEGIN
WRITELN('Seek failed in move_to_position ',POS);
HALT;
END;
END;