home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winui / congui / congui.dlg next >
Text File  |  1997-10-08  |  3KB  |  57 lines

  1.  
  2. //-----------------------------------------------------------------------------
  3. // This is a part of the Microsoft Source Code Samples. 
  4. // Copyright (C) 1993-1997 Microsoft Corporation.
  5. // All rights reserved. 
  6. //  
  7. // This source code is only intended as a supplement to 
  8. // Microsoft Development Tools and/or WinHelp documentation.
  9. // See these sources for detailed information regarding the 
  10. // Microsoft samples programs.
  11. //-----------------------------------------------------------------------------
  12.  
  13. 1 DLGINCLUDE "ConGUI.H"
  14.  
  15. CL DIALOG 95, 134, 272, 173
  16. LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
  17. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  18. CAPTION "C Compiler Options"
  19. BEGIN
  20.     LTEXT           "Memory Model:", -1, 7, 39, 56, 8
  21.     COMBOBOX        402, 7, 48, 66, 43, CBS_DROPDOWN | WS_VSCROLL | 
  22.                     WS_TABSTOP
  23.     LTEXT           "Processor:", -1, 77, 39, 38, 8
  24.     COMBOBOX        404, 78, 48, 50, 43, CBS_DROPDOWN | WS_VSCROLL | 
  25.                     WS_TABSTOP
  26.     LTEXT           "Calling Convention:", -1, 134, 39, 68, 8
  27.     COMBOBOX        406, 134, 48, 79, 43, CBS_DROPDOWN | WS_VSCROLL | 
  28.                     WS_TABSTOP
  29.     LTEXT           "Warning Level:", -1, 7, 69, 50, 8
  30.     COMBOBOX        408, 7, 78, 64, 51, CBS_DROPDOWN | WS_VSCROLL | 
  31.                     WS_TABSTOP
  32.     AUTOCHECKBOX    "Warnings Fatal", 409, 7, 92, 81, 10
  33.     LTEXT           "Debug Information:", -1, 77, 69, 68, 8
  34.     COMBOBOX        411, 77, 78, 79, 51, CBS_DROPDOWN | WS_VSCROLL | 
  35.                     WS_TABSTOP
  36.     LTEXT           "Windows Entry Exit Code:", -1, 7, 107, 87, 8
  37.     COMBOBOX        413, 7, 117, 98, 48, CBS_DROPDOWN | WS_VSCROLL | 
  38.                     WS_TABSTOP
  39.     LTEXT           "Standard Options:", -1, 7, 4, 64, 8
  40.     COMBOBOX        415, 7, 14, 206, 65, CBS_DROPDOWN | WS_VSCROLL | 
  41.                     WS_TABSTOP
  42.     CONTROL         "", -1, "Static", SS_BLACKRECT, 0, 31, 212, 1
  43.     LTEXT           "Language:", -1, 161, 70, 37, 8
  44.     COMBOBOX        418, 162, 79, 51, 51, CBS_DROPDOWN | WS_VSCROLL | 
  45.                     WS_TABSTOP
  46.     LTEXT           "Defines:", -1, 7, 138, 30, 8
  47.     EDITTEXT        420, 38, 136, 175, 12, ES_AUTOHSCROLL
  48.     LTEXT           "Include Path:", -1, 7, 154, 46, 8
  49.     EDITTEXT        422, 56, 153, 157, 12, ES_AUTOHSCROLL
  50.     PUSHBUTTON      "Additional Options...", 423, 139, 99, 74, 14, 
  51.                     WS_DISABLED
  52.     PUSHBUTTON      "Optimizations...", 424, 139, 117, 74, 14, WS_DISABLED
  53.     PUSHBUTTON      "OK", IDOK, 225, 7, 40, 14
  54.     PUSHBUTTON      "Cancel", IDCANCEL, 225, 22, 40, 14
  55.     PUSHBUTTON      "Help", T_HELP, 225, 44, 40, 14
  56. END
  57.