home *** CD-ROM | disk | FTP | other *** search
- /*=======================================================*/
- /* TVFTYPE.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"
-
- /*=============================================*/
- /* TVfld_type set type of input field */
- /* Ralf Brown 4/17/88 */
- /*=============================================*/
-
- void pascal TVfld_type(OBJECT win,int fld,int type)
- {
- static BYTE stream[] = { S_WINDOW(3), 0xF6, 0, 0 } ;
-
- stream[5] = fld ;
- stream[6] = type ;
- TVwin_stream(win,stream) ;
- }
-
- /* End of TVFTYPE.C */
-