(FORTRAN) | (C) |
subroutine clear | clear() |
(FORTRAN) | (C) |
subroutine color(col) | color(col) |
integer col | int col; |
(FORTRAN) | (C) |
subroutine mapcolor(indx,red,green,blue) | mapcolor(indx,red,green,blue) |
integer indx,red,green,blue | int indx,red,green,blue; |
(FORTRAN) | (C) |
subroutine clipping(onoff) | clipping(onoff) |
logical onoff | int onoff; |
(FORTRAN) | (C) |
integer function getkey | int getkey() |
(FORTRAN) | (C) |
integer function checkkey() | int checkkey() |
(FORTRAN) | (C) |
integer function getstring(bcol,string) | int getstring(bcol,string) |
character*(*) string | int bcol; |
char *string; |
(FORTRAN) | (C) |
integer function locator(xaddr,yaddr) | int locator(xaddr,yaddr) |
real xaddr,yaddr | float *xaddr,*yaddr; |
(FORTRAN) | (C) |
integer fuction slocator(xaddr,yaddr) | int slocator(xaddr,yaddr) |
real xaddr,yaddr | float *xaddr,*yaddr; |