38 lines
1 KiB
Plaintext
38 lines
1 KiB
Plaintext
|
// Resource file to allow vc++ to read mycomput.rc without
|
||
|
// interfering with stdrsrc.rc.
|
||
|
|
||
|
#include "mycomput.rc"
|
||
|
#include "stdrsrc.rc"
|
||
|
|
||
|
// Chooser page
|
||
|
#include "choosert.h" // Temporary chooser IDs
|
||
|
#include "chooserd.h" // Default chooser IDs
|
||
|
#include "chooser.rc" // Chooser dialog
|
||
|
|
||
|
// Chooser dialog
|
||
|
#include "chooser2.h"
|
||
|
#include "chooser2.rc"
|
||
|
|
||
|
|
||
|
//+----------------------------------------------------------------------------
|
||
|
//
|
||
|
// Version
|
||
|
//
|
||
|
//-----------------------------------------------------------------------------
|
||
|
|
||
|
#define VER_FILETYPE VFT_DLL
|
||
|
#define VER_FILESUBTYPE VFT_UNKNOWN
|
||
|
#define VER_FILEDESCRIPTION_STR "Computer Management"
|
||
|
#define VER_INTERNALNAME_STR "MYCOMPUT"
|
||
|
#define VER_LEGALCOPYRIGHT_YEARS "1997-1998"
|
||
|
#define VER_ORIGINALFILENAME_STR "mycomput.dll"
|
||
|
|
||
|
#include <ntverp.h>
|
||
|
#include <common.ver>
|
||
|
|
||
|
STRINGTABLE DISCARDABLE
|
||
|
BEGIN
|
||
|
IDS_SNAPINABOUT_VERSION VER_PRODUCTVERSION_STR
|
||
|
IDS_SNAPINABOUT_PROVIDER VER_COMPANYNAME_STR
|
||
|
END
|