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
24 lines
675 B
|
|
#include <windows.h>
|
|
#include <ntverp.h>
|
|
|
|
#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"
|