home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / NBEZ.ZIP / NBEZ.H < prev    next >
Text File  |  1992-12-05  |  3KB  |  53 lines

  1. /*********************************************************************
  2.  *                                                                   *
  3.  * MODULE NAME :  nbez.h                 AUTHOR:  Rick Fishman       *
  4.  * DATE WRITTEN:  12-05-92                                           *
  5.  *                                                                   *
  6.  * DESCRIPTION:                                                      *
  7.  *                                                                   *
  8.  *  Common definitions and function prototypes for NBEZ.EXE          *
  9.  *                                                                   *
  10.  * HISTORY:                                                          *
  11.  *                                                                   *
  12.  *  12-05-92 - Copied source from the NBBASE sample.                 *
  13.  *                                                                   *
  14.  *  Rick Fishman                                                     *
  15.  *  Code Blazers, Inc.                                               *
  16.  *  4113 Apricot                                                     *
  17.  *  Irvine, CA. 92720                                                *
  18.  *  CIS ID: 72251,750                                                *
  19.  *                                                                   *
  20.  *********************************************************************/
  21.  
  22. #define ID_NBWINFRAME           1
  23. #define ID_NB                   10
  24.  
  25. #define IDD_PAGE1               1000
  26. #define EF_1                    1001
  27.  
  28. #define IDD_PAGE2               2000
  29. #define EF_2                    2001
  30.  
  31. #define IDD_PAGE3               3000
  32. #define EF_3                    3001
  33.  
  34. #define IDD_PAGE4               4000
  35. #define EF_4                    4001
  36.  
  37. #define NOTEBOOK_WINCLASS       "NoteBookSample"
  38.  
  39. #define PROGRAM_TITLE           "Notebook Control Sample Program"
  40.  
  41. typedef struct _NBPAGE              // VARIABLES USED FOR A NOTEBOOK PAGE
  42. {
  43.     PFNWP    pfnwpDlg;              // Window procedure address for the dialog
  44.     PSZ      szStatusLineText;      // Text to go on status line
  45.     PSZ      szTabText;             // Text to go on major tab
  46.     ULONG    idDlg;                 // ID of the dialog box for this page
  47.  
  48. } NBPAGE, *PNBPAGE;
  49.  
  50. /****************************************************************************
  51.  *                        E N D   O F   S O U R C E                         *
  52.  ****************************************************************************/
  53.