30 lines
889 B
Plaintext
30 lines
889 B
Plaintext
/*++
|
|
Resources for AWD viewer stub.
|
|
|
|
Copyright (c) 1997 Microsoft Corporation
|
|
|
|
Author:
|
|
Brian Dewey (t-briand) 1997-8-18
|
|
--*/
|
|
|
|
#include <windows.h>
|
|
#include <ntverp.h>
|
|
#include "resource.h"
|
|
|
|
#define VER_FILETYPE VFT_APP
|
|
#define VER_FILESUBTYPE VFT2_UNKNOWN
|
|
#define VER_FILEDESCRIPTION_STR "AWD Viewer Stub"
|
|
#define VER_INTERNALNAME_STR "awdvstub.exe\0"
|
|
#define VER_ORIGINALFILENAME_STR "awdvstub.exe\0"
|
|
|
|
#include "common.ver"
|
|
|
|
STRINGTABLE
|
|
BEGIN
|
|
IDS_USEAGE "Useage:\r\nawdvstub [/c] <awd file> [<tiff file>]"
|
|
IDS_TITLE "AWD to TIFF converter"
|
|
IDS_NOVIEW "There is no TIFF viewer on this system."
|
|
IDS_ERRCONV "Error converting AWD file to TIFF."
|
|
IDS_NOTEMPPATH "Error: No location to store temporary files."
|
|
END
|