home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / Samples / CSAPE32.ARJ / INCLUDE / BDSIDEOD.H < prev    next >
C/C++ Source or Header  |  1990-04-05  |  764b  |  32 lines

  1. /*
  2.     bdsideod.h    12/18/88
  3.  
  4.     % sidebar border private header
  5.  
  6.     OWL 1.2
  7.     Copyright (c) 1988, by Oakland Group, Inc.
  8.     ALL RIGHTS RESERVED.
  9.  
  10.     Revision History:
  11.     -----------------
  12.     11/06/89 jmd    removed DoRaw macros
  13.      3/28/90 jmd    ansi-fied
  14. */
  15.  
  16. #include "bordod.h"
  17. /* -------------------------------------------------------------------------- */
  18.  
  19. typedef struct _bdsidebarod {
  20.     border_od    bdd;                      /* common object super class */
  21.  
  22.     boolean      up;                        /* up and down lights */
  23.     boolean        down;
  24.     int            eltop;
  25.     int            elbot;
  26.     char        back;                    /* character behind scroll lights */
  27. } bdsidebar_od;
  28.  
  29. #define bdsideod_GetSelf(bdsidedd)    bordod_GetSelf(&(bdsidedd)->bdd)
  30. /* -------------------------------------------------------------------------- */
  31.  
  32.