53 lines
1003 B
Plaintext
53 lines
1003 B
Plaintext
/*++
|
|
|
|
Copyright (c) 1996-1999 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
unidrv.rc
|
|
|
|
Abstract:
|
|
|
|
Unidrv driver resource file
|
|
|
|
Environment:
|
|
|
|
Windows NT Unidrv driver
|
|
|
|
Revision History:
|
|
|
|
10/15/96 -amandan-
|
|
Created it
|
|
|
|
mm/dd/yy -author-
|
|
description
|
|
|
|
--*/
|
|
|
|
#include <windows.h>
|
|
|
|
//
|
|
// Version resources
|
|
//
|
|
|
|
#include <ntverp.h>
|
|
|
|
#ifdef WINNT_40
|
|
#define VER_FILEVERSION 0, 2, 0, 0
|
|
#define VER_INTERNALNAME_STR "UNIDRV4.DLL"
|
|
#define VER_ORIGINALFILENAME_STR "UNIDRV4.DLL"
|
|
#define VER_FILESUBTYPE VFT2_DRV_PRINTER
|
|
#else // !WINNT_40
|
|
#define VER_FILEVERSION 0, 3, 0x0501, 0
|
|
#define VER_INTERNALNAME_STR "UNIDRV.DLL"
|
|
#define VER_ORIGINALFILENAME_STR "UNIDRV.DLL"
|
|
#define VER_FILESUBTYPE VFT2_DRV_VERSIONED_PRINTER
|
|
#endif // !WINNT_40
|
|
|
|
#define VER_FILETYPE VFT_DRV
|
|
#define VER_FILEDESCRIPTION_STR "Unidrv Printer Driver"
|
|
|
|
#include "common.ver"
|
|
|
|
|