home *** CD-ROM | disk | FTP | other *** search
/ gondwana.ecr.mu.oz.au/pub/ / Graphics.tar / Graphics / VOGLE.ZIP / VOGLE / SRC / MSFORT / FPREF.FOR < prev    next >
Encoding:
Text File  |  2000-02-11  |  374 b   |  18 lines

  1.       interface to subroutine C_prefposition[c](x, y)
  2.       integer *2 x, y
  3.       end
  4.  
  5.       interface to subroutine C_prefsize[c](x, y)
  6.       integer *2 x, y
  7.       end
  8.  
  9.       subroutine prefposition(x, y)
  10.       integer x, y
  11.       call C_prefposition(x, y)
  12.       end
  13.  
  14.       subroutine prefsize(x, y)
  15.       integer x, y
  16.       call C_prefsize(x, y)
  17.       end
  18.