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

  1. /*
  2.     bordsend.c
  3.  
  4.     % bord_SendMsg
  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.     12/18/88 jmd    pulled out of border.c
  13.  
  14.      5/23/89 jmd    added "border features"
  15. */
  16.  
  17. #include "oakhead.h"
  18. #include "disppriv.h"
  19. #include "bordobj.h"
  20. /* -------------------------------------------------------------------------- */
  21.  
  22. int bord_SendMsg(win, msg, indata, outdata)
  23.     win_type win;
  24.     int msg;
  25.     VOID *indata;
  26.     VOID *outdata;
  27. /*
  28.     Simply a function wrapped around bord_Do to save code size.
  29. */
  30. {
  31.     return(bord_Do(win, msg, indata, outdata));
  32. }
  33.  
  34. /* -------------------------------------------------------------------------- */
  35.  
  36. void bord_SetFeature(win, features)
  37.     win_type win;
  38.     unsigned int features;
  39. /*
  40.     Send a SETFEATURE message to a border.
  41. */
  42. {
  43.     bord_Do(win, BDM_SETFEATURE, &features, NULL);
  44. }
  45. /* -------------------------------------------------------------------------- */
  46.  
  47.