From 73989145362bb685ef08da4b4008469ba7d76010 Mon Sep 17 00:00:00 2001 From: "Janet B. Anderson" Date: Fri, 8 Feb 2002 16:37:38 +0000 Subject: [PATCH] Added win32 resource file. --- src/libCom/Com.rc | 36 ++++++++++++++++++++++++++++++++++++ src/libCom/Makefile | 1 + src/misc/Makefile | 1 + src/misc/miscIoc.rc | 36 ++++++++++++++++++++++++++++++++++++ 4 files changed, 74 insertions(+) create mode 100755 src/libCom/Com.rc create mode 100755 src/misc/miscIoc.rc diff --git a/src/libCom/Com.rc b/src/libCom/Com.rc new file mode 100755 index 000000000..56c2a23a7 --- /dev/null +++ b/src/libCom/Com.rc @@ -0,0 +1,36 @@ +#include +#include "epicsVersion.h" + +VS_VERSION_INFO VERSIONINFO + FILEVERSION BASE_VERSION,BASE_REVISION,BASE_MODIFICATION,BASE_UPDATE_LEVEL + PRODUCTVERSION BASE_VERSION,BASE_REVISION,BASE_MODIFICATION,BASE_UPDATE_LEVEL + FILEFLAGSMASK 0x3fL +#ifdef _DEBUG + FILEFLAGS 0x1L +#else + FILEFLAGS 0x0L +#endif + FILEOS VOS__WINDOWS32 + FILETYPE VFT_UNKNOWN + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904b0" + BEGIN + VALUE "Comments","Common Library for EPICS\0" + VALUE "CompanyName", "The EPICS collaboration\0" + VALUE "FileDescription", "Common Library\0" + VALUE "FileVersion", BASE_VERSION_STRING "\0" + VALUE "InternalName", "Com\0" + VALUE "LegalCopyright", "Copyright (C) Univ. of California, Univ. of Chicago\0" + VALUE "OriginalFilename", "Com.dll\0" + VALUE "ProductName", "Experimental Physics and Industrial Control System (EPICS)\0" + VALUE "ProductVersion", BASE_VERSION_STRING "\0" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x409, 1200 + END +END diff --git a/src/libCom/Makefile b/src/libCom/Makefile index 77fbc6508..495a62b29 100644 --- a/src/libCom/Makefile +++ b/src/libCom/Makefile @@ -206,6 +206,7 @@ SRCS_vxWorks += iocClock.c # LIBRARY=Com SYS_DLL_LIBS := ws2_32 advapi32 user32 +Com_RCS_WIN32 = Com.rc # For R3.13 compatibility only OBJLIB_vxWorks=Com diff --git a/src/misc/Makefile b/src/misc/Makefile index 8ed0bd2a0..42af95768 100644 --- a/src/misc/Makefile +++ b/src/misc/Makefile @@ -12,6 +12,7 @@ LIBSRCS += asSubRecordFunctions.c DLL_LIBS = Com dbStaticIoc dbIoc asIoc rsrvIoc registryIoc LIBRARY_IOC = miscIoc +miscIoc_RCS_WIN32 = miscIoc.rc miscIoc_DLL_LIBS = rsrvIoc asIoc dbIoc registryIoc dbStaticIoc Com misc_RCS_WIN32 = misc.rc diff --git a/src/misc/miscIoc.rc b/src/misc/miscIoc.rc new file mode 100755 index 000000000..36f6eb64f --- /dev/null +++ b/src/misc/miscIoc.rc @@ -0,0 +1,36 @@ +#include +#include "epicsVersion.h" + +VS_VERSION_INFO VERSIONINFO + FILEVERSION BASE_VERSION,BASE_REVISION,BASE_MODIFICATION,BASE_UPDATE_LEVEL + PRODUCTVERSION BASE_VERSION,BASE_REVISION,BASE_MODIFICATION,BASE_UPDATE_LEVEL + FILEFLAGSMASK 0x3fL +#ifdef _DEBUG + FILEFLAGS 0x1L +#else + FILEFLAGS 0x0L +#endif + FILEOS VOS__WINDOWS32 + FILETYPE VFT_UNKNOWN + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904b0" + BEGIN + VALUE "Comments","Miscellaneous Ioc Tools Library for EPICS\0" + VALUE "CompanyName", "The EPICS collaboration\0" + VALUE "FileDescription", "Miscellaneous Ioc Tools Library\0" + VALUE "FileVersion", BASE_VERSION_STRING "\0" + VALUE "InternalName", "miscIoc\0" + VALUE "LegalCopyright", "Copyright (C) Univ. of California, Univ. of Chicago\0" + VALUE "OriginalFilename", "miscIoc.dll\0" + VALUE "ProductName", "Experimental Physics and Industrial Control System (EPICS)\0" + VALUE "ProductVersion", BASE_VERSION_STRING "\0" + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x409, 1200 + END +END