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.

54 lines
2.2 KiB

  1. #include <windows.h>
  2. #include <ntverp.h>
  3. #define VER_FILETYPE VFT_APP
  4. #define VER_FILESUBTYPE VFT2_UNKNOWN
  5. #define VER_FILEDESCRIPTION_STR "Protected storage server"
  6. #define VER_INTERNALNAME_STR "Protected storage server"
  7. #include "common.ver"
  8. #include "resource.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. //
  11. // Dialog
  12. //
  13. IDD_GET_WINDOWS_PASSWORD DIALOG DISCARDABLE 0, 0, 254, 153
  14. STYLE DS_MODALFRAME | DS_SETFOREGROUND | DS_CENTER | WS_POPUP | WS_CAPTION |
  15. WS_SYSMENU
  16. CAPTION "Protected Storage"
  17. FONT 8, "MS Shell Dlg"
  18. BEGIN
  19. EDITTEXT IDC_EDIT1,137,72,86,12,ES_PASSWORD | ES_AUTOHSCROLL
  20. PUSHBUTTON "OK",IDOK,141,130,50,14
  21. PUSHBUTTON "Cancel",IDCANCEL,195,130,50,14
  22. LTEXT "Protected Storage uses your Windows password to protect your personal data.",
  23. IDC_MAIN_CAPTION,63,9,182,18
  24. LTEXT "Protected Storage has detected data created with a previous version. To continue to use this data, enter your Windows password below.",
  25. IDC_MAIN_CAPTION2,63,35,168,26
  26. LTEXT "Windows password:",IDC_MAIN_CAPTION4,63,72,65,8
  27. CONTROL 129,IDC_STATIC5,"Static",SS_BITMAP | SS_SUNKEN,9,9,43,135
  28. END
  29. /////////////////////////////////////////////////////////////////////////////
  30. //
  31. // String Table
  32. //
  33. STRINGTABLE DISCARDABLE
  34. BEGIN
  35. IDS_PASSWORD_ERROR_DLGTITLE "Password Error"
  36. END
  37. STRINGTABLE DISCARDABLE
  38. BEGIN
  39. IDS_GET_WINDOWS_PASSWORD_95
  40. "Protected Storage uses your Windows password to protect your personal items. Since you have not rebooted, the password is not yet available.\n\nPlease enter your Windows password below. "
  41. IDS_GET_WINDOWS_PASSWORD_NT
  42. "Protected Storage uses your Windows password to protect your personal items. Since you have not logged-off, the password is not yet available.\n\nPlease enter your Windows password below. "
  43. IDS_PASSWORD_NOVERIFY "The password you entered does not match the password under which data is currently stored.\n\nYou may have mistyped your password. "
  44. END