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

  1. /*
  2.     bdpromod.h    12/19/88
  3.  
  4.     % box border with title and prompt
  5.  
  6.     12/19/88  by Ted.
  7.     Extracted from bdmousod for the purpose of inheriting it back in.
  8.  
  9.     OWL 1.1
  10.     Copyright (c) 1988, by Oakland Group, Inc.
  11.     ALL RIGHTS RESERVED.
  12.  
  13.     Revision History:
  14.     -----------------
  15. */
  16.  
  17. #include "bordod.h"
  18. /* -------------------------------------------------------------------------- */
  19.  
  20. typedef struct {
  21.     border_od    bdd;                    /* bdd, bar, lights, & debounced */
  22.  
  23.     char         prompt[BD_PROMPTLEN + 1];    /* space for border prompt */
  24.     int            plen;                        /* length of border prompt */
  25.     int            tlen;                        /* length of title */
  26. } bdprompt_od;
  27.  
  28. #define bdprompt_DoRaw(bdprd, msg, indata, outdata)     \
  29.     obj_DoRaw(bd_prompt, bdprd, msg, indata, outdata)
  30.  
  31. #define bdpromod_GetSelf(bdpromdd)    bordod_GetSelf(&(bdpromdd)->bdd)
  32. /* -------------------------------------------------------------------------- */
  33.  
  34.