home *** CD-ROM | disk | FTP | other *** search
- /*
- bdsideod.h 12/18/88
-
- OWL 1.1
- Copyright (c) 1988, by Oakland Group, Inc.
- ALL RIGHTS RESERVED.
-
- Revision History:
- -----------------
- */
-
- #include "bordod.h"
- /* -------------------------------------------------------------------------- */
-
- typedef struct {
- border_od bdd; /* common object super class */
-
- boolean up; /* up and down lights */
- boolean down;
- int eltop;
- int elbot;
- char back; /* character behind scroll lights */
- } bdsidebar_od;
-
- #define bdsidebar_DoRaw(bdsbd, msg, indata, outdata) \
- obj_DoRaw(bd_sidebar, bdsbd, msg, indata, outdata)
-
- #define bdsideod_GetSelf(bdsidedd) bordod_GetSelf(&(bdsidedd)->bdd)
- /* -------------------------------------------------------------------------- */
-
-