bintools/rcomp/tsrc/TWTEXT.RSS
author timothy.murphy@nokia.com
Mon, 10 May 2010 13:31:44 +0100
branchfix
changeset 539 cbc9d85d999d
parent 0 044383f39525
permissions -rw-r--r--
fix a resource copy problem (not copying when multiple copies required) that showed up in the tests.

/*
* Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description: 
* This is used to exercise the explicit wide character abilities of the
* compiler
* Pute, June 1999.
*
*/






NAME TWTE



STRUCT TBUF
    {
    BUF buf; /* non-zero terminated text string */
    }

STRUCT LBUF
    {
    LTEXT txt; // leading-byte counted text string
    }

STRUCT LBUF16
    {
	LTEXT16 txt; // leading byte counted wide string
	}

STRUCT ARRAY
    {
    STRUCT items[];
    }

STRUCT TBUF1	
	{ 
	BUF<1> buf; // buffer of fixed length
	}

// The following resource contains explicit wide characters.



RESOURCE TBUF wide_string { buf = "here are some wide characters:" 
                                  <0x20AC> <0x07ED>
                                  "...";
                          }


RESOURCE TBUF1 long_string { buf = <0x20AC>; }	// tests length checking