home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / sd386v50.zip / sd386src.zip / DIADLL.H < prev    next >
Text File  |  1995-04-25  |  2KB  |  65 lines

  1. /*****************************************************************************/
  2. /* File:                                             IBM INTERNAL USE ONLY   */
  3. /*   Diadll.h                                                                */
  4. /*                                                                           */
  5. /* Description:                                                              */
  6. /*                                                                           */
  7. /*   Data for dlls dialog.                                                   */
  8. /*                                                                           */
  9. /*...Release 1.01 (04/03/92)                                                 */
  10. /*...                                                                        */
  11. /*... 05/08/92  701   Srinivas  Cua Interface.                               */
  12. /*****************************************************************************/
  13. #define MAXSHDLLWINSIZE 60
  14.  
  15. #define DLL_DLG_START_ROW         4
  16. #define DLL_DLG_START_COL         10
  17. #define DLL_DLG_LEN               16
  18. #define DLL_DLG_WIDTH             MAXSHDLLWINSIZE
  19. #define DLL_DLG_BUTTONS           1
  20. #define DLL_DLG_SKIPLINES_ATTOP   3
  21. #define DLL_DLG_BUTTON_ROWS       1
  22. #define DLL_DLG_NOOF_ENTRIES      0
  23. #define DLL_DLG_MAX_ROWS          10
  24. #define DLL_DLG_BTN_ROW           18
  25.  
  26. #define DLL_DLG_BTN_CANCEL_COL    DLL_DLG_START_COL + 15
  27. #define DLL_DLG_BTN_CANCEL_TEXT   "Cancel"
  28. #define DLL_DLG_BTN_CANCEL_WIDTH  6
  29. #define DLL_DLG_BTN_CANCEL_KEY    ESC
  30.  
  31. static uchar   Dia_Dll_Title[]   = " DLL List ";
  32. static BUTTON  Dia_Dll_Buttons[] =
  33. {
  34.   {
  35.     DLL_DLG_BTN_ROW,
  36.     DLL_DLG_BTN_CANCEL_COL,
  37.     DLL_DLG_BTN_CANCEL_WIDTH,
  38.     DLL_DLG_BTN_CANCEL_TEXT,
  39.     DLL_DLG_BTN_CANCEL_KEY
  40.   }
  41. };
  42.  
  43. DIALOGSHELL  Dia_Dll =
  44. {
  45.   DLL_DLG_START_ROW,
  46.   DLL_DLG_START_COL,
  47.   DLL_DLG_LEN,
  48.   DLL_DLG_WIDTH,
  49.   DLL_DLG_BUTTONS,
  50.   DLL_DLG_BUTTON_ROWS,
  51.   Dia_Dll_Title,
  52.   DLL_DLG_SKIPLINES_ATTOP,
  53.   &Dia_Dll_Buttons[0],
  54.   DisplayDllChoice,
  55.   DllDialogFunction
  56. };
  57.  
  58. DIALOGCHOICE Dia_Dll_Choices =
  59. {
  60.   DLL_DLG_NOOF_ENTRIES,
  61.   DLL_DLG_MAX_ROWS,
  62.   0,                                    /* Not initialised in the begining.  */
  63.   NULL                                  /* Not initialised in the begining.  */
  64. };
  65.