25 lines
746 B
Plaintext
25 lines
746 B
Plaintext
#include "windows.h"
|
|
#include "resource.h"
|
|
#include "dialogs.dlg"
|
|
|
|
IDI_ICON1 ICON DISCARDABLE "REMOTESP.ICO"
|
|
IDI_ICON2 ICON DISCARDABLE "PHONE.ICO"
|
|
IDI_ICON3 ICON DISCARDABLE "LINE.ICO"
|
|
|
|
#if TAPI_NT
|
|
#include <ntverp.h>
|
|
#else
|
|
#include <version.h>
|
|
#endif
|
|
|
|
#define VER_FILEDESCRIPTION_STR "Microsoft\256 Windows(TM) Remote Service Provider"
|
|
#define VER_INTERNALNAME_STR "remotesp"
|
|
#define VER_ORIGINALFILENAME_STR "REMOTESP.TSP"
|
|
//#define VER_LEGALCOPYRIGHT_STR "Copyright \251 Microsoft Corporation 1996. All Rights Reserved."
|
|
#define VER_LEGALCOPYRIGHT_YEARS "1996"
|
|
|
|
#define VER_FILETYPE VFT_DLL
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
|
|
#include <common.ver>
|