home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / DESQVIEW / DVGLUE10.ARC / TVFHEAD.C < prev    next >
Encoding:
C/C++ Source or Header  |  1988-07-10  |  1.0 KB  |  29 lines

  1. /*=======================================================*/
  2. /*  TVFHEAD.C                                            */
  3. /*                                                       */
  4. /*  (c) Copyright 1988 Ralf Brown  All Rights Reserved   */
  5. /*  May be freely copied for noncommercial use, so long  */
  6. /*  as this copyright notice remains intact, and any     */
  7. /*  changes are marked in the comment blocks preceding   */
  8. /*  functions.                                           */
  9. /*=======================================================*/
  10.  
  11. #include <mem.h>
  12. #include "tvapi.h"
  13. #include "tvstream.h"
  14.  
  15. /*=============================================*/
  16. /* TVfld_header  change field table header     */
  17. /*   Ralf Brown 4/17/88                        */
  18. /*=============================================*/
  19.  
  20. void pascal TVfld_header(OBJECT win,FT_HEADER *header)
  21. {
  22.    static BYTE stream[] = { S_WINDOW(7), 0xFC, 0,0,0,0,0,0 } ;
  23.  
  24.    memcpy((char *)(stream+5), (char *)header, sizeof(FT_HEADER)) ;
  25.    TVwin_stream(win,stream) ;
  26. }
  27.  
  28. /* End of TVFHEAD.C */
  29.