24 lines
574 B
Plaintext
24 lines
574 B
Plaintext
|
//+--------------------------------------------------------------------------
|
||
|
//
|
||
|
// Copyright (c) 1997-1999 Microsoft Corporation
|
||
|
//
|
||
|
// File:
|
||
|
//
|
||
|
// Contents:
|
||
|
//
|
||
|
// History:
|
||
|
//
|
||
|
//---------------------------------------------------------------------------
|
||
|
|
||
|
|
||
|
#include <windows.h>
|
||
|
#include <ntverp.h>
|
||
|
|
||
|
#define VER_FILETYPE VFT_APP
|
||
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
||
|
#define VER_FILEDESCRIPTION_STR "Certificate Request Test Program"
|
||
|
#define VER_INTERNALNAME_STR "certreq"
|
||
|
#define VER_ORIGINALFILENAME_STR "certreq.exe"
|
||
|
|
||
|
#include "common.ver"
|