home *** CD-ROM | disk | FTP | other *** search
- /*=======================================================*/
- /* TVQAREAD.C */
- /* */
- /* (c) Copyright 1988 Ralf Brown All Rights Reserved */
- /* May be freely copied for noncommercial use, so long */
- /* as this copyright notice remains intact, and any */
- /* changes are marked in the comment blocks preceding */
- /* functions. */
- /*=======================================================*/
-
- #include "tvapi.h"
- #include "tvstream.h"
-
- /*=======================================================*/
- /* TVqry_atread return TRUE if reading attr not chars */
- /* Ralf Brown 6/10/88 */
- /*=======================================================*/
-
- int pascal TVqry_atread(OBJECT win)
- {
- static BYTE attr_query[]= { S_QUERY(1), QS_READATTR } ;
-
- TVwin_stream(win,attr_query) ;
- return (attr_query[4] == QS_READATTR) ;
- }
-
- /* End of TVQAREAD.C */
-