diff options
author | Pierre Ossman <ossman@cendio.se> | 2022-01-21 16:40:43 +0100 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2022-01-21 16:43:09 +0100 |
commit | d0c7b915c7ceaa4bcc3883e316337f2a37ebaf61 (patch) | |
tree | 1367cb93b8bef21f2ec7d6602236f548719f9802 /win/wm_hooks | |
parent | c8de7f76291f7b311898fd6e9a256a90df3151fa (diff) | |
download | tigervnc-d0c7b915c7ceaa4bcc3883e316337f2a37ebaf61.tar.gz tigervnc-d0c7b915c7ceaa4bcc3883e316337f2a37ebaf61.zip |
Remove 32-/64-bit distinctions
The migration from 32-bit to 64-bit has long passed. Let's get rid of
all distinctions as native applications it the norm now.
Diffstat (limited to 'win/wm_hooks')
-rw-r--r-- | win/wm_hooks/wm_hooks.rc | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/win/wm_hooks/wm_hooks.rc b/win/wm_hooks/wm_hooks.rc index aabe7324..da7a9c45 100644 --- a/win/wm_hooks/wm_hooks.rc +++ b/win/wm_hooks/wm_hooks.rc @@ -73,13 +73,8 @@ BEGIN BEGIN VALUE "Comments", "\0" VALUE "CompanyName", "TigerVNC Project\0" - #ifdef WIN64 - VALUE "FileDescription", "TigerVNC Server Hooking DLL for Win64\0" - VALUE "ProductName", "TigerVNC Server Hooking DLL for Win64\0" - #else - VALUE "FileDescription", "TigerVNC Server Hooking DLL for Win32\0" - VALUE "ProductName", "TigerVNC Server Hooking DLL for Win32\0" - #endif + VALUE "FileDescription", "TigerVNC Server Hooking DLL\0" + VALUE "ProductName", "TigerVNC Server Hooking DLL\0" VALUE "FileVersion", __RCVERSIONSTR VALUE "InternalName", "\0" VALUE "LegalCopyright", "Copyright (C) 1999-2005 [many holders]\0" |