home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / Samples / CSAPE32.ARJ / SOURCE / CSSRC / SDSETTB.C < prev    next >
C/C++ Source or Header  |  1990-03-28  |  579b  |  33 lines

  1. /*
  2.       sdsettb.c 
  3.  
  4.     % sed_SetTB
  5.  
  6.     Text buffer setting routine, send border scroll message.
  7.  
  8.     C-scape 3.2
  9.     Copyright (c) 1988, by Oakland Group, Inc.
  10.     ALL RIGHTS RESERVED.
  11.  
  12.     Revision History:
  13.     -----------------
  14.      3/24/89 jmd    added sed_ macros
  15.  
  16.      3/28/90 jmd    ansi-fied
  17. */
  18.  
  19. #include "sed.h"
  20.  
  21. boolean sed_SetTB(sed_type sed, char *text, unsigned int len)
  22. /*
  23.     Sets the textbuf to text, keeps menu's rowcount accurate.
  24. */
  25. {
  26.     boolean ret;
  27.  
  28.     ret = menu_SetTB(sed_GetMenu(sed), text, len);
  29.     sed_SendBorderMsg(sed, BDM_SCROLL, NULL, NULL);
  30.  
  31.     return(ret);    
  32. }
  33.