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

  1. /*
  2.     bdmousod.h    12/19/88
  3.  
  4.     % box border with scroll lights and mouse support header.
  5.  
  6.     OWL 1.1
  7.     Copyright (c) 1988, by Oakland Group, Inc.
  8.     ALL RIGHTS RESERVED.
  9.  
  10.     Revision History:
  11.     -----------------
  12.     12/18/88 jdc    made it a subclass of bdsidebar
  13.     12/19/88 ted    made it a subclass of bdprompt as well.
  14.  
  15.      5/23/89 jmd    added "border features"
  16. */
  17.  
  18. #include "bdpromod.h"    /* inherits bdprompt */
  19. #include "bdsideod.h"    /* inherits bdsidebar */
  20. /* -------------------------------------------------------------------------- */
  21.  
  22. typedef struct {
  23.     bdsidebar_od    sidebar;
  24.     bdprompt_od        prompt;
  25. } bdmouse_od;
  26.  
  27. #define bdmouse_DoRaw(bdmd, msg, indata, outdata)     \
  28.     obj_DoRaw(bd_mouse, bdmd, msg, indata, outdata)
  29. /* -------------------------------------------------------------------------- */
  30.  
  31.