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

  1. /*
  2.     sdgetsiz.c
  3.  
  4.     % sed_GetSize
  5.  
  6.     C-scape 3.2
  7.     Copyright (c) 1986, 1987, by Oakland Group, Inc.
  8.     ALL RIGHTS RESERVED.
  9.  
  10.     Revision History:
  11.     -----------------
  12.      7/07/88 jmd    added sed_GetXXX macros
  13.  
  14.      3/28/90 jmd    ansi-fied
  15. */
  16.  
  17. #include "sed.h"
  18.  
  19. void sed_GetSize(sed_type sed, int *hgt, int *wid)
  20. /*                                        
  21.     requires:   sed object.
  22.     effects:    gets the size of the given sed, and returns it in hgt 
  23.                 and wid.
  24. */
  25. {
  26.     *hgt = sed_GetHeight(sed);
  27.     *wid = sed_GetWidth(sed);
  28. }
  29.