2025-04-27 07:49:33 -04:00

27 lines
704 B
Plaintext

#include <windows.h>
#include <ntverp.h>
#define EXPORT_CONTROLLED
#define VER_FILETYPE VFT_DLL
#define VER_FILESUBTYPE VFT2_UNKNOWN
#define VER_FILEDESCRIPTION_STR "LSA Shell"
#define VER_INTERNALNAME_STR "lsass.exe"
#include "common.ver"
//
// The reason we need to create a separate file just for the
// MOF resource is because we want MOF resource only to be in lsass.exe
// whereas the version resource should be present for lsasrv.dll and
// its variants as well.
//
// Simply inserting a single line as:
//
// LsaMofResource MOFDATA lsasrv.bmf
//
// instead of the #include line below does not seem to work. rc barfs on that.
//
#include "lsamof.rc"