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.

31 lines
878 B

  1. #include <windows.h>
  2. #include <ntverp.h>
  3. #define FILEDESCRIPTION "Patch Application Tool"
  4. #define FILENAME "wpatch.exe"
  5. #define VER_FILETYPE VFT_APP
  6. #define VER_FILESUBTYPE VFT2_UNKNOWN
  7. #define VER_FILEDESCRIPTION_STR FILEDESCRIPTION
  8. #define VER_INTERNALNAME_STR FILENAME
  9. #define VER_ORIGINALFILENAME_STR FILENAME
  10. #include <common.ver>
  11. #include "wpatchid.h"
  12. /////////////////////////////////////////////////////////////////////////////
  13. //
  14. // Dialog
  15. //
  16. DLG_PROGRESS DIALOGEX 0, 0, 171, 49
  17. STYLE DS_MODALFRAME | DS_3DLOOK | DS_CENTER | WS_POPUP | WS_CAPTION
  18. EXSTYLE WS_EX_TOOLWINDOW
  19. CAPTION "WPatch"
  20. FONT 8, "MS Shell Dlg"
  21. BEGIN
  22. LTEXT "Applying Patch...",-1,13,15,70,8
  23. CONTROL "",IDC_PROGRESS,"msctls_progress32",WS_TABSTOP,10,35,150,
  24. 8
  25. END