From stdcxx-dev-return-5091-apmail-incubator-stdcxx-dev-archive=incubator.apache.org@incubator.apache.org Wed Sep 19 17:48:59 2007 Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 51372 invoked from network); 19 Sep 2007 17:48:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 19 Sep 2007 17:48:58 -0000 Received: (qmail 81083 invoked by uid 500); 19 Sep 2007 17:48:49 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 81074 invoked by uid 500); 19 Sep 2007 17:48:49 -0000 Mailing-List: contact stdcxx-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: stdcxx-dev@incubator.apache.org Delivered-To: mailing list stdcxx-dev@incubator.apache.org Received: (qmail 81052 invoked by uid 99); 19 Sep 2007 17:48:49 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Sep 2007 10:48:49 -0700 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of Farid_Zaripov@epam.com designates 217.21.63.3 as permitted sender) Received: from [217.21.63.3] (HELO EPMSA009.epam.com) (217.21.63.3) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Sep 2007 17:48:49 +0000 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Subject: Re: do we still need rwstderr.rc? Date: Wed, 19 Sep 2007 20:48:25 +0300 Message-ID: <7BDB2168BEAEF14C98F1901FD2DE6438F58196@epmsa009.minsk.epam.com> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Re: do we still need rwstderr.rc? Thread-Index: Acf65UdXEUaWk8B0Ryen5XGPVHIEfQ== From: "Farid Zaripov" To: X-Virus-Checked: Checked by ClamAV on apache.org > Now that we have our own gencat utility do we still need rwstderr.rc? > > http://svn.apache.org/repos/asf/incubator/stdcxx/trunk/src/rwstderr.rc I have not received this message by e-mail, but have seen it at www.mail-archive.com. The gencat utility on windows uses .rc file format, anf .msg file format on unix. I agree that if gencat would accept .msg files instead of .rc files it would be great improvement. But then we need to decide how to deal with possible multiple sets in .msg file. The .rc file doesn't have the sets. We can encode set number and message number to ID in .rc file (0 <=3D ID <=3D 0xffff): ID =3D set * 0x100 + msg - 256 sets by 256 messages per set, or ID =3D set * 0x1000 + msg - 16 sets by 4096 messages per set BTW, I see that currently rwstderr.rc file is not used in build process. Farid.