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.

58 lines
1.7 KiB

  1. #include <windows.h>
  2. #include <scrnsave.h>
  3. #include <logon.h>
  4. IDI_SERVER ICON "logonsrv.ico"
  5. IDI_CLIENT ICON "logoncli.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. IDB_SBS BITMAP "win32sbs.bmp"
  13. IDB_BLADE BITMAP "win32bla.bmp"
  14. IDB_APPLIANCE BITMAP "win32app.bmp"
  15. #else
  16. IDB_SERVER BITMAP "win64srv.bmp"
  17. IDB_WORKSTA BITMAP "win64pro.bmp"
  18. IDB_ADVANCED BITMAP "win64ads.bmp"
  19. IDB_DATACENTER BITMAP "win64dtc.bmp"
  20. IDB_PERSONAL BITMAP "win64pro.bmp" // there is no ia64 per
  21. #endif
  22. IDB_EMBEDDED BITMAP "Embedded.bmp" // there is no ia64 per
  23. IDB_TABLET BITMAP "tablet.bmp"
  24. DLG_SCRNSAVECONFIGURE DIALOG 0, 0, 0, 0
  25. STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
  26. CAPTION "Logon Screen Saver"
  27. FONT 8, "MS Shell Dlg"
  28. BEGIN
  29. END
  30. STRINGTABLE PRELOAD
  31. BEGIN
  32. // HACK!!!!: Look at IDS_DESCRIPTION in logon.c to see why this format is needed
  33. IDS_DESCRIPTION "Windows Server 2003\0Windows XP"
  34. IDS_OPTIONS, "This screen saver has no options that you can set."
  35. END
  36. #include <ntverp.h>
  37. /*-----------------------------------------------*/
  38. /* the following lines are specific to this file */
  39. /*-----------------------------------------------*/
  40. /* VER_FILETYPE, VER_FILESUBTYPE, VER_FILEDESCRIPTION_STR
  41. * and VER_INTERNALNAME_STR must be defined before including COMMON.VER
  42. */
  43. #define VER_FILETYPE VFT_APP
  44. #define VER_FILESUBTYPE VFT2_UNKNOWN
  45. #define VER_FILEDESCRIPTION_STR "Logon Screen Saver"
  46. #define VER_INTERNALNAME_STR "logon\0"
  47. #include "common.ver"