mirror of https://github.com/lianthony/NT4.0
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.
39 lines
822 B
39 lines
822 B
/*
|
|
Enhanced NCSA Mosaic from Spyglass
|
|
"Guitar"
|
|
|
|
Copyright 1994 Spyglass, Inc.
|
|
All Rights Reserved
|
|
|
|
Author(s):
|
|
Eric W. Sink [email protected]
|
|
Jeff Hostetler [email protected]
|
|
*/
|
|
|
|
/* version.c -- define application name and version. */
|
|
|
|
#include "all.h"
|
|
#include "oldver.h"
|
|
// #include "basever.h"
|
|
|
|
/* used for naming window classes and alerts and such */
|
|
LPCTSTR vv_Application =
|
|
x__Application__;
|
|
|
|
/* used for title bar */
|
|
LPCTSTR vv_ApplicationFullName =
|
|
x__AppFullName__;
|
|
|
|
/* not displayed to the user, simply used to find the INI file */
|
|
LPCTSTR vv_IniFileName =
|
|
x__BaseName__;
|
|
|
|
/* displayed in the tech support dialog */
|
|
LPCTSTR vv_DatePrepared =
|
|
__DATE__;
|
|
|
|
/* displayed in the tech support dialog, and used for the HTTP User-agent field */
|
|
char *vv_UserAgentString = x__UserAgentString__;
|
|
|
|
|
|
|