home *** CD-ROM | disk | FTP | other *** search
- /*
- bdpromod.h 12/19/88
-
- % box border with title and prompt private header
-
- 12/19/88 by Ted.
- Extracted from bdmousod for the purpose of inheriting it back in.
-
- OWL 1.2
- Copyright (c) 1988, by Oakland Group, Inc.
- ALL RIGHTS RESERVED.
-
- Revision History:
- -----------------
- 11/06/89 jmd removed DoRaw macros
- 3/28/90 jmd ansi-fied
- */
-
- #include "bordod.h"
- /* -------------------------------------------------------------------------- */
-
- typedef struct _bdpromptod {
- border_od bdd; /* bdd, bar, lights, & debounced */
-
- char prompt[BD_PROMPTLEN + 1]; /* space for border prompt */
- int plen; /* length of border prompt */
- int tlen; /* length of title */
- } bdprompt_od;
-
- #define bdpromod_GetSelf(bdpromdd) bordod_GetSelf(&(bdpromdd)->bdd)
- /* -------------------------------------------------------------------------- */
-
-