fix: make sure host attribute is set rather than blank in logs on windows by using the env var 'COMPUTERNAME' instead of 'HOSTNAME'. Thus make it less difficult to order recipes in the log by time.
/*
* 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