60 lines
1.3 KiB
Plaintext
60 lines
1.3 KiB
Plaintext
/*++
|
|
|
|
Copyright (c) 1996 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
oem.rc
|
|
|
|
Abstract:
|
|
|
|
OEM kernel mode rendering module for printer driver resource file
|
|
|
|
Environment:
|
|
|
|
Windows NT PostScript driver
|
|
|
|
Revision History:
|
|
|
|
09/09/96 -eigos-
|
|
Created it.
|
|
|
|
mm/dd/yy -author-
|
|
description
|
|
|
|
--*/
|
|
|
|
#include <windows.h>
|
|
|
|
//
|
|
// Include other resources here
|
|
//
|
|
|
|
#include <ntverp.h>
|
|
#include "oem.h"
|
|
|
|
/*-----------------------------------------------*/
|
|
/* the following lines are specific to this file */
|
|
/*-----------------------------------------------*/
|
|
|
|
/* VER_FILETYPE, VER_FILESUBTYPE, VER_FILEDESCRIPTION_STR
|
|
* and VER_INTERNALNAME_STR must be defined before including COMMON.VER
|
|
* The strings don't need a '\0', since common.ver has them.
|
|
*/
|
|
#define VER_FILEVERSION 0, 2, 0, 0
|
|
#define VER_FILETYPE VFT_DLL
|
|
#define VER_FILESUBTYPE VFT2_DRV_PRINTER
|
|
|
|
#ifdef PSCRIPT
|
|
#define VER_FILEDESCRIPTION_STR "OEM Custom PostScript Printer Driver"
|
|
#define VER_INTERNALNAME_STR "PSOEM.DLL"
|
|
#define VER_ORIGINALFILENAME_STR "PSOEM.DLL"
|
|
#elif UNIDRV
|
|
#define VER_FILEDESCRIPTION_STR "OEM Custom Mini Printer Driver"
|
|
#define VER_INTERNALNAME_STR "UNIOEM.DLL"
|
|
#define VER_ORIGINALFILENAME_STR "UNIOEM.DLL"
|
|
#endif
|
|
|
|
#include "common.ver"
|
|
|