23 lines
629 B
C
23 lines
629 B
C
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 1999 - 1999
|
|
//
|
|
// File: resource.h
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#include <ntverp.h>
|
|
#include <winver.h>
|
|
#include <dlgs.h>
|
|
|
|
#define VER_FILETYPE VFT_DLL
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
#define VER_FILEDESCRIPTION_STR "MMC Shell Extension DLL"
|
|
#define VER_INTERNALNAME_STR "mmcshext.dll"
|
|
#define VER_ORIGINALFILENAME_STR "mmcshext.dll"
|
|
|
|
#include "common.ver"
|
|
|