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.

69 lines
1.8 KiB

  1. #include "windows.h"
  2. #include "globals.h"
  3. //
  4. // first property sheet in the main dialog
  5. //
  6. WS2SPDlg DIALOG 30, 22, 350, 225
  7. LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
  8. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  9. CAPTION "Conversion Tables"
  10. FONT 8, "MS Shell Dlg"
  11. BEGIN
  12. LISTBOX DID_LISTCTL, 4, 15, 290, 210, WS_VSCROLL | WS_TABSTOP | LBS_USETABSTOPS | LBS_NOTIFY
  13. PUSHBUTTON "&Up", DID_UP, 300, 40, 40, 14
  14. PUSHBUTTON "&Down", DID_DOWN, 300, 70, 40, 14
  15. PUSHBUTTON "&More...", DID_MORE, 300, 100, 40, 14
  16. END
  17. //
  18. // second property sheet in the main dialog
  19. //
  20. RNRSPDlg DIALOG 30, 22, 350, 225
  21. LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
  22. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  23. CAPTION "Conversion Tables"
  24. FONT 8, "MS Shell Dlg"
  25. BEGIN
  26. LISTBOX DID_LISTCTL, 4, 15, 290, 210, WS_VSCROLL | WS_TABSTOP | LBS_USETABSTOPS | LBS_NOTIFY
  27. END
  28. //
  29. // popup with "more info"
  30. //
  31. MoreInfoDlg DIALOG 30, 22, 350, 225
  32. LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
  33. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
  34. CAPTION "Complete Information"
  35. FONT 8, "MS Shell Dlg"
  36. BEGIN
  37. PUSHBUTTON "OK", IDOK, 300, 40, 40, 14
  38. LISTBOX DID_LISTCTL, 4, 15, 290, 210, WS_VSCROLL | WS_TABSTOP | LBS_USETABSTOPS | LBS_NOTIFY
  39. END
  40. //
  41. // Requires version header files from the NT build environment
  42. // Puts the correct version resources in a DLL
  43. //
  44. #include <winver.h>
  45. #include <ntverp.h>
  46. #define VER_FILETYPE VFT_APP
  47. #define VER_FILESUBTYPE VFT2_UNKNOWN
  48. #define VER_FILEDESCRIPTION_STR "WinSock2 reorder service providers"
  49. #define VER_INTERNALNAME_STR "sporder.exe"
  50. #define VER_ORIGINALFILENAME_STR "sporder.exe"
  51. #include "common.ver"