/*********************************************************************** * * libstd.rc - Apache C++ Standard Library Version Info * * $Id: $ * *********************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the License); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or * implied. See the License for the specific language governing * permissions and limitations under the License. * * Copyright 1994-2007 Rogue Wave Software, Inc. * ***********************************************************************/ #include #define _RWSTD_COMPANY_NAME "Apache Software Foundation" #define _RWSTD_DESCRIPTION "Apache C++ Standard Library" #define _RWSTD_PRODUCT_NAME "Apache C++ Standard Library Project" #define _RWSTD_COPYRIGHT \ "Copyright 1994-2007 Rogue Wave Software, Inc." #define _RWSTD_LICENSE \ "Licensed to the Apache Software Foundation (ASF) under one or more\r\n" \ "contributor license agreements. See the NOTICE file distributed\r\n" \ "with this work for additional information regarding copyright\r\n" \ "ownership. The ASF licenses this file to you under the Apache\r\n" \ "License, Version 2.0 (the License); you may not use this file\r\n" \ "except in compliance with the License. You may obtain a copy of\r\n" \ "the License at\r\n" \ "\r\n" \ "http://www.apache.org/licenses/LICENSE-2.0\r\n" \ "\r\n" \ "Unless required by applicable law or agreed to in writing, software\r\n" \ "distributed under the License is distributed on an ""AS IS"" BASIS,\r\n" \ "WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\r\n" \ "implied. See the License for the specific language governing\r\n" \ "permissions and limitations under the License." #ifndef _RWSTDDEBUG # ifndef _RWSTD_REENTRANT // release single-threaded # define _RWSTD_LIB_SUFFIX "8" # else // #ifdef _RWSTD_REENTRANT // release multi-threaded # define _RWSTD_LIB_SUFFIX "12" # endif // _RWSTD_REENTRANT #else // #ifdef _RWSTDDEBUG # ifndef _RWSTD_REENTRANT // debug single-threaded # define _RWSTD_LIB_SUFFIX "11" # else // #ifdef _RWSTD_REENTRANT // debug multi-threaded # define _RWSTD_LIB_SUFFIX "15" # endif // _RWSTD_REENTRANT #endif // _RWSTDDEBUG #define _RWSTD_DLL_BASENAME "libstd" _RWSTD_LIB_SUFFIX "d" #define _RWSTD_DLL_FILENAME _RWSTD_DLL_BASENAME ".dll" #define _RWSTD_VER_STR_CSV \ _RWSTD_VER_MAJOR##,##_RWSTD_VER_MINOR##, \ ##_RWSTD_VER_MICRO##,##_RWSTD_VER_PATCH VS_VERSION_INFO VERSIONINFO FILEVERSION _RWSTD_VER_STR_CSV PRODUCTVERSION _RWSTD_VER_STR_CSV FILEFLAGSMASK 0x3fL #if defined (_RWSTDDEBUG) FILEFLAGS 0x01L #else FILEFLAGS 0x00L #endif #if defined (WINNT) || defined (WIN64) FILEOS 0x40004L #else FILEOS 0x4L #endif FILETYPE 0x2L FILESUBTYPE 0x0L BEGIN BLOCK "StringFileInfo" BEGIN BLOCK "040904b0" BEGIN VALUE "Comments", _RWSTD_LICENSE "\0" VALUE "CompanyName", _RWSTD_COMPANY_NAME "\0" VALUE "FileDescription", _RWSTD_DESCRIPTION "\0" VALUE "FileVersion", _RWSTD_VER_STR "\0" VALUE "InternalName", _RWSTD_DLL_BASENAME "\0" VALUE "LegalCopyright", _RWSTD_COPYRIGHT "\0" VALUE "OriginalFilename", _RWSTD_DLL_FILENAME "\0" VALUE "ProductName", _RWSTD_PRODUCT_NAME "\0" VALUE "ProductVersion", _RWSTD_VER_STR "\0" END END BLOCK "VarFileInfo" BEGIN VALUE "Translation", 0x409, 1200 END END