about summary refs log tree commit diff stats
path: root/src/LYIcon.rc
blob: 23cf66172e0c9c3e0b2998d93abec1a82aceb5b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// $LynxId: LYIcon.rc,v 1.5 2013/12/01 01:12:55 tom Exp $

#include <windows.h>

100	ICON	"../samples/lynx.ico"

VS_VERSION_INFO VERSIONINFO
FILEVERSION    2,8,8,2002
PRODUCTVERSION 2,8,8,2002
FILEFLAGSMASK  VS_FFI_FILEFLAGSMASK
FILEFLAGS      0
FILEOS         VOS_NT_WINDOWS32
FILETYPE       VFT_APP
FILESUBTYPE    VFT2_UNKNOWN
BEGIN
  BLOCK "StringFileInfo"
  BEGIN
    BLOCK "040904B0"
    BEGIN
      VALUE "CompanyName",      "http://lynx.isc.org"
      VALUE "FileDescription",  "Lynx - web browser"
      VALUE "FileVersion",      "2.8.8.2002"
      VALUE "InternalName",     "Lynx"
      VALUE "LegalCopyright",   "�1997-2013 Thomas E. Dickey"
      VALUE "OriginalFilename", "lynx.exe"
      VALUE "ProductName",      "Lynx - web browser"
      VALUE "ProductVersion",   "2.8.8.2002"
    END
  END
  BLOCK "VarFileInfo"
  BEGIN
     VALUE "Translation", 0x409, 1200
  END
END
* dosname DOS file specification (NO NODE) * * ON EXIT: * returns WWW file specification * */ const char *HTDOS_wwwName(const char *dosname); /* * Converts Unix slashes to DOS */ char *HTDOS_slashes(char *path); /* PUBLIC HTDOS_name() * CONVERTS WWW name into a DOS name * ON ENTRY: * wwwname WWW file name * * ON EXIT: * returns DOS file specification * * Bug: Returns pointer to static -- non-reentrant */ char *HTDOS_name(char *wwwname); #ifdef WIN_EX char *HTDOS_short_name(char *fn); #else #define HTDOS_short_name(fn) fn #endif #endif /* HTDOS_H */