home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c185 / 2.ddi / OWLSRC.EXE / CSCAPE / SOURCE / BORDCLOS.C < prev    next >
Encoding:
C/C++ Source or Header  |  1989-09-06  |  561 b   |  32 lines

  1. /*
  2.     bordclos.c   2/87
  3.  
  4.     % bord_Close
  5.  
  6.     OWL 1.1
  7.     Copyright (c) 1986, 1987, 1988, by Oakland Group, Inc.
  8.     ALL RIGHTS RESERVED.
  9.  
  10.     Revision History:
  11.     -----------------
  12.     10/31/88 Ted:    Removed linking.
  13. */
  14.  
  15. #include "oakhead.h"
  16. #include "disppriv.h"
  17. #include "bordobj.h"
  18.  
  19. void bord_Close(win)
  20.     win_type win;
  21. /*
  22.     Close a window's border object.
  23. */
  24. {
  25.     if (win != NULL && win_border(win) != NULL) {
  26.         obj_Close(win_border(win));
  27.         win_setbd(win, NULL);
  28.     }
  29. }
  30. /* -------------------------------------------------------------------------- */
  31.  
  32.