home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 24 / CD_ASCQ_24_0995.iso / vrac / dflt20.zip / HELPBOX.H < prev    next >
C/C++ Source or Header  |  1994-03-24  |  409b  |  26 lines

  1. /* --------- helpbox.h ----------- */
  2.  
  3. #ifndef HELPBOX_H
  4. #define HELPBOX_H
  5.  
  6. /* --------- linked list of help text collections -------- */
  7. struct helps {
  8.     char *hname;
  9.     char *comment;
  10.     long hptr;
  11.     int bit;
  12.     int hheight;
  13.     int hwidth;
  14.     int nexthlp;
  15.     int prevhlp;
  16.     void *hwnd;
  17.     char *PrevName;
  18.     char *NextName;
  19. #ifdef FIXHELP
  20.     struct helps *NextHelp;
  21. #endif
  22. };
  23.  
  24. #endif
  25.  
  26.