home *** CD-ROM | disk | FTP | other *** search
- /*
- bdpromod.h 12/19/88
-
- % box border with title and prompt
-
- 12/19/88 by Ted.
- Extracted from bdmousod for the purpose of inheriting it back in.
-
- OWL 1.1
- Copyright (c) 1988, by Oakland Group, Inc.
- ALL RIGHTS RESERVED.
-
- Revision History:
- -----------------
- */
-
- #include "bordod.h"
- /* -------------------------------------------------------------------------- */
-
- typedef struct {
- 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 bdprompt_DoRaw(bdprd, msg, indata, outdata) \
- obj_DoRaw(bd_prompt, bdprd, msg, indata, outdata)
-
- #define bdpromod_GetSelf(bdpromdd) bordod_GetSelf(&(bdpromdd)->bdd)
- /* -------------------------------------------------------------------------- */
-
-