Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
1.2 KiB

  1. #include <ntverp.h>
  2. #include <winuser.h>
  3. #include <commctrl.h>
  4. #include <windows.h>
  5. #define VER_FILETYPE VFT_APP
  6. #define VER_FILESUBTYPE VFT2_UNKNOWN
  7. #define VER_FILEDESCRIPTION_STR "Windows Symbol Installer"
  8. #define VER_INTERNALNAME_STR "SYMBOLS.EXE"
  9. #define VER_ORIGINALFILENAME_STR "SYMBOLS.EXE"
  10. #include <common.ver>
  11. #include "resource.h"
  12. IDD_LICENSE DIALOG DISCARDABLE 0, 0, 250, 200
  13. STYLE WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX |
  14. DS_MODALFRAME | WS_POPUP
  15. CAPTION "License"
  16. FONT 8, "MS Shell Dlg"
  17. BEGIN
  18. LTEXT "Please read the following license agreement. Press the PAGE DOWN key to see the rest of the agreement.",
  19. IDC_UNUSED,7,4,234,24
  20. EDITTEXT IDC_EDIT_LICENSE,7,32,234,118,
  21. WS_BORDER|WS_VSCROLL|ES_MULTILINE|ES_READONLY
  22. LTEXT "Do you accept all of the terms of the preceding License Agreement? If you choose No, Install will close. To install you must accept this agreement.",
  23. IDC_UNUSED,7,154,234,24
  24. PUSHBUTTON "&Yes",IDYES,136,182,50,14
  25. PUSHBUTTON "&No",IDNO,193,182,50,14
  26. END