home *** CD-ROM | disk | FTP | other *** search
- /*
- sdcurs.c
-
- % sed_SetCursorType, sed_SetCursorType
-
- C-scape 3.2
- Copyright (c) 1988, by Oakland Group, Inc.
- ALL RIGHTS RESERVED.
-
- Revision History:
- -----------------
- 12/16/88 jmd turned into functions
-
- 3/28/90 jmd ansi-fied
- */
-
- #include "sed.h"
-
- void sed_SetCursorType(sed_type sed, cursortype ctype)
- /*
- Set the sed's window cursor type.
- */
- {
- win_SetCursorType(sed, ctype);
- }
-
- cursortype sed_GetCursorType(sed_type sed)
- /*
- Get the sed's window cursor type.
- */
- {
- return(win_GetCursorType(sed));
- }
-
-