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.

54 lines
1.4 KiB

  1. #include <windows.h>
  2. #include <scrnsave.h>
  3. #include <logon.h>
  4. 1 ICON "logon.ico"
  5. 2 ANIICON "welcome.ico"
  6. #ifndef _WIN64
  7. IDB_SERVER BITMAP "win32srv.bmp"
  8. IDB_WORKSTA BITMAP "win32pro.bmp"
  9. IDB_ADVANCED BITMAP "win32ads.bmp"
  10. IDB_DATACENTER BITMAP "win32dtc.bmp"
  11. IDB_PERSONAL BITMAP "win32per.bmp"
  12. #else
  13. IDB_SERVER BITMAP "win64srv.bmp"
  14. IDB_WORKSTA BITMAP "win64pro.bmp"
  15. IDB_ADVANCED BITMAP "win64ads.bmp"
  16. IDB_DATACENTER BITMAP "win64dtc.bmp"
  17. IDB_PERSONAL BITMAP "win64pro.bmp" // there is no ia64 per
  18. #endif
  19. IDB_EMBEDDED BITMAP "Embedded.bmp" // there is no ia64 per
  20. DLG_SCRNSAVECONFIGURE DIALOG 0, 0, 0, 0
  21. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  22. CAPTION "Logon Screen Saver"
  23. FONT 8, "MS Shell Dlg"
  24. BEGIN
  25. END
  26. STRINGTABLE PRELOAD
  27. BEGIN
  28. IDS_DESCRIPTION "Windows XP"
  29. 2, "This screen saver has no options that you can set."
  30. END
  31. #include <ntverp.h>
  32. /*-----------------------------------------------*/
  33. /* the following lines are specific to this file */
  34. /*-----------------------------------------------*/
  35. /* VER_FILETYPE, VER_FILESUBTYPE, VER_FILEDESCRIPTION_STR
  36. * and VER_INTERNALNAME_STR must be defined before including COMMON.VER
  37. */
  38. #define VER_FILETYPE VFT_APP
  39. #define VER_FILESUBTYPE VFT2_UNKNOWN
  40. #define VER_FILEDESCRIPTION_STR "Logon Screen Saver"
  41. #define VER_INTERNALNAME_STR "logon\0"
  42. #include "common.ver"