home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
QBasic & Borland Pascal & C
/
Delphi5.iso
/
C
/
Samples
/
CSAPE32.ARJ
/
SOURCE
/
CSSRC
/
SDGETHW.C
< prev
next >
Wrap
C/C++ Source or Header
|
1990-03-28
|
702b
|
38 lines
/*
sdgethw.c
% sed_GetHeight, sed_GetWidth
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"
int sed_GetHeight(sed_type sed)
/*
Returns the height of the sed.
Note: the height does not include the border
use sed_GetBorderHeight to find the total height of the sed.
*/
{
return(win_GetHeight(sed));
}
int sed_GetWidth(sed_type sed)
/*
Returns the width of the sed.
Note: the width does not include the border
use sed_GetBorderWidth to find the total width of the sed.
*/
{
return(win_GetWidth(sed));
}