Source code of Windows XP (NT5)
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.

75 lines
2.2 KiB

  1. //+--------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1994 - 1998.
  5. //
  6. // File: exestub.rc
  7. //
  8. // Contents: Resources for Event Viewer snapin launcher
  9. //
  10. // History: 01-14-1999 DavidMun Created
  11. //
  12. //---------------------------------------------------------------------------
  13. #include <windows.h>
  14. #include "resource.h"
  15. /////////////////////////////////////////////////////////////////////////////
  16. //
  17. // Strings
  18. //
  19. STRINGTABLE
  20. BEGIN
  21. IDS_EVENTVWR_MSC_NOT_FOUND "The Event Viewer console file %1 cannot be found. Re-run Microsoft Windows Setup."
  22. IDS_NO_SYSTEMDIR "The directory where Windows is installed cannot be found. If restarting Microsoft Windows does not solve the problem, re-run Microsoft Windows Setup."
  23. IDS_MMC_LAUNCH_FAILED "Microsoft Management Console cannot be started. Re-run Microsoft Windows Setup."
  24. END
  25. /////////////////////////////////////////////////////////////////////////////
  26. //
  27. // Dialogs
  28. //
  29. IDD_ERROR DIALOG DISCARDABLE 0, 0, 268, 81
  30. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  31. EXSTYLE WS_EX_CONTEXTHELP
  32. CAPTION "Error"
  33. FONT 8, "MS Shell Dlg"
  34. BEGIN
  35. ICON "",IDC_POPUP_MSG_ICON,7,9,20,20
  36. LTEXT "",IDC_ERRORMSG,33,7,228,25
  37. LTEXT "&Error code:",IDC_ERROR_CODE_LBL,56,42,39,8
  38. EDITTEXT IDC_ERROR_CODE_EDIT,100,40,112,12,ES_AUTOHSCROLL |
  39. ES_READONLY
  40. DEFPUSHBUTTON "Close",IDCANCEL,109,60,50,14
  41. END
  42. /////////////////////////////////////////////////////////////////////////////
  43. //
  44. // Icons
  45. //
  46. IDI_EVENT_VIEWER ICON DISCARDABLE "eventvwr.ico"
  47. /////////////////////////////////////////////////////////////////////////////
  48. //
  49. // Version
  50. //
  51. #define VER_FILETYPE VFT_APP
  52. #define VER_FILESUBTYPE VFT2_UNKNOWN
  53. #define VER_FILEDESCRIPTION_STR "Event Viewer Snapin Launcher"
  54. #define VER_ORIGINALFILENAME_STR "eventvwr.exe"
  55. #define VER_INTERNALNAME_STR "eventvwr"
  56. #define VER_LEGALCOPYRIGHT_YEARS "1999"
  57. #include <ntverp.h>
  58. #include <common.ver>