home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / w3_prog / mleenter.arj / MLEENTER.H < prev    next >
Encoding:
C/C++ Source or Header  |  1991-09-23  |  1.1 KB  |  55 lines

  1. /*
  2.  * MLEENTER.H
  3.  *
  4.  * Global definitions and declarations for the MLEENTER code, that
  5.  * apply to the application, not specific dialogs.
  6.  *
  7.  * Copyright (c) 1991 Microsoft Corporation. All rights reserved.
  8.  */
  9.  
  10. /*
  11.  * Menu identifiers.
  12.  */
  13.  
  14. #define IDM_DIALOGMLEENTER   101
  15. #define IDM_DIALOGEXIT       199
  16.  
  17.  
  18. /*
  19.  * CDIALOGS is the number of dialog definitions.
  20.  */
  21. #define CDIALOGS            1
  22.  
  23.  
  24. /*
  25.  * Number for dialog boxes.  Note that the number for each symbol must
  26.  * match the position of the Dialog procedure in the rglpDialogs array
  27.  * in subedit.c.
  28.  *
  29.  * Make sure these are SEQUENTIAL!
  30.  */
  31.  
  32. #define IDD_MLEENTER        1
  33.  
  34.  
  35.  
  36. /*
  37.  * Control Identifiers.  Global for all dialogs.
  38.  */
  39.  
  40. #define ID_NULL             -1
  41. #define ID_EDIT             100
  42. #define ID_METHODDEF        101
  43. #define ID_METHODSUB        102
  44.  
  45.  
  46. /*
  47.  * Function prototypes.
  48.  */
  49.  
  50. LONG     FAR PASCAL MLEEnterWndProc(HWND, WORD, WORD, LONG);
  51. WORD         PASCAL WDoDialog(WORD);
  52.  
  53. LONG     FAR PASCAL MLEEnterSubProc(HWND, WORD, WORD, LONG);
  54. BOOL     FAR PASCAL MLEEnterDlgProc(HWND, WORD, WORD, LONG);
  55.