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.

24 lines
675 B

  1. #include <windows.h>
  2. #include <ntverp.h>
  3. #define VER_FILETYPE VFT_DLL
  4. #define VER_FILESUBTYPE VFT2_UNKNOWN
  5. #define VER_FILEDESCRIPTION_STR "LSA Shell"
  6. #define VER_INTERNALNAME_STR "lsass.exe"
  7. #include "common.ver"
  8. //
  9. // The reason we need to create a separate file just for the
  10. // MOF resource is because we want MOF resource only to be in lsass.exe
  11. // whereas the version resource should be present for lsasrv.dll and
  12. // its variants as well.
  13. //
  14. // Simply inserting a single line as:
  15. //
  16. // LsaMofResource MOFDATA lsasrv.bmf
  17. //
  18. // instead of the #include line below does not seem to work. rc barfs on that.
  19. //
  20. #include "lsamof.rc"