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