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

  1. /*
  2.     sdcurs.c
  3.  
  4.     % sed_SetCursorType, sed_SetCursorType
  5.  
  6.     C-scape 3.2
  7.     Copyright (c) 1988, by Oakland Group, Inc.
  8.     ALL RIGHTS RESERVED.
  9.  
  10.     Revision History:
  11.     -----------------
  12.     12/16/88 jmd    turned into functions
  13.  
  14.      3/28/90 jmd    ansi-fied
  15. */
  16.  
  17. #include "sed.h"
  18.  
  19. void sed_SetCursorType(sed_type sed, cursortype ctype)
  20. /*
  21.     Set the sed's window cursor type.
  22. */
  23. {
  24.     win_SetCursorType(sed, ctype);
  25. }
  26.  
  27. cursortype sed_GetCursorType(sed_type sed)
  28. /*
  29.     Get the sed's window cursor type.
  30. */
  31. {
  32.     return(win_GetCursorType(sed));
  33. }
  34.  
  35.