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

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