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.

29 lines
1.6 KiB

  1. #include <windows.h>
  2. #include "resource.h"
  3. STRINGTABLE DISCARDABLE
  4. BEGIN
  5. IDS_USAGE "\n\nUsage: regsvr32 [/u] [/s] [/n] [/i[:cmdline]] dllname\n/u -\tUnregister server\n/s -\tSilent; display no message boxes\n/i -\tCall DllInstall passing it an optional [cmdline]; when used with /u calls dll uninstall\n/n -\tdo not call DllRegisterServer; this option must be used with /i"
  6. IDS_UNRECOGNIZEDFLAG "Unrecognized flag: %1"
  7. IDS_EXTRAARGUMENT "Extra argument on command line: %1"
  8. IDS_NOPROJECT "This command is only valid when an OLE Custom Control project is open."
  9. IDS_NODLLNAME "No DLL name specified."
  10. IDS_OLEINITFAILED "OleInitialize failed."
  11. IDS_LOADLIBFAILED "LoadLibrary(""%1"") failed - %2"
  12. IDS_NOTDLLOROCX "%1 was loaded, but the %2 entry point was not found.\n\n%1 does not appear to be a .DLL or .OCX file."
  13. IDS_NOENTRYPOINT "%1 was loaded, but the %2 entry point was not found.\n\nThis file can not be registered."
  14. IDS_CALLFAILED "%1 in %2 failed.\nReturn code was: %3"
  15. IDS_CALLSUCCEEDED "%1 in %2 succeeded."
  16. IDS_OLEUNINITFAILED "OleUninitialize failed."
  17. IDS_NOTEXEORHELPER """%1"" is not an executable file and no registration\nhelper is registered for this file type."
  18. END
  19. #include <ntverp.h>
  20. #define VER_FILETYPE VFT_APP
  21. #define VER_FILESUBTYPE VFT2_UNKNOWN
  22. #define VER_FILEDESCRIPTION_STR "Microsoft(C) Register Server"
  23. #define VER_INTERNALNAME_STR "REGSVR32"
  24. #define VER_ORIGINALFILENAME_STR "REGSVR32.EXE"
  25. #include <common.ver>