Leaked source code of windows server 2003
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.
|
|
/*++
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, 0x0510, 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"
|