home *** CD-ROM | disk | FTP | other *** search
- /*
- winaux.prg
-
- Copyright (c) 1991 Anton van Straaten
-
- Auxiliary window functions which must not be compiled with win.ch.
- */
-
- function winRow(w)
- if w == NIL
- w := winCurrent()
- end
- return if(w == NIL, row(), row() - (w:top + w:margin))
-
-
- function winCol(w)
- if w == NIL
- w := winCurrent()
- end
- return if(w == NIL, col(), col() - (w:left + w:margin))
-
-
- // eof winaux.prg
-