home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / Samples / CSAPE32.ARJ / SOURCE / OWLSCR / BORDSEND.C < prev    next >
Encoding:
C/C++ Source or Header  |  1990-07-26  |  867 b   |  35 lines

  1. /*
  2.     bordsend.c
  3.  
  4.     % bord_SendMsg
  5.  
  6.     OWL 1.2
  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.     12/20/89 ted    Removed bord_SetFeature because it's a macro now.
  17.      3/28/90 jmd    ansi-fied
  18.      7/25/90 jdc    added win == NULL check, fixes prompt_win == NULL bug
  19. */
  20.  
  21. #include "oakhead.h"
  22. #include "disppriv.h"
  23. #include "bordobj.h"
  24. /* -------------------------------------------------------------------------- */
  25.  
  26. int bord_SendMsg(win_type win, int msg, VOID *indata, VOID *outdata)
  27. /*
  28.     Simply a function wrapped around bord_Do to save code size.
  29. */
  30. {
  31.     return((win == NULL) ? FALSE : bord_Do(win, msg, indata, outdata));
  32. }
  33. /* -------------------------------------------------------------------------- */
  34.  
  35.