ICU-157 Updated the copyright notice in the icudata.dll file.

X-SVN-Rev: 336
This commit is contained in:
Helena Chapman 1999-12-07 23:30:58 +00:00
parent 0b5046a971
commit 61c30e4e4e
4 changed files with 9 additions and 14 deletions

View file

@ -44,11 +44,6 @@ typedef struct _CompactByteArray CompactByteArray;
#define UCNV_FILE_CHECK_MARKER 0xBEDA
#define UCNV_COPYRIGHT_STRING \
" * COPYRIGHT: *\n" \
" * (C) Copyright International Business Machines Corporation, 1999 *\n"
#define UCNV_COPYRIGHT_STRING_LENGTH 200
/*maximum length of the converter names */
#define UCNV_MAX_CONVERTER_NAME_LENGTH 60
#define UCNV_MAX_FULL_FILE_NAME_LENGTH (600+UCNV_MAX_CONVERTER_NAME_LENGTH)

View file

@ -31,6 +31,7 @@
* 04/20/99 stephen Cleaned up & reworked for autoconf.
* Renamed to utypes.h.
* 05/05/99 stephen Changed to use <inttypes.h>
* 12/07/99 helena Moved copyright notice string from ucnv_bld.h here.
*******************************************************************************
*/
@ -407,6 +408,11 @@ errorName(UErrorCode code)
"[BOGUS UErrorCode]"
#endif
#define U_COPYRIGHT_STRING \
" Copyright (C) 1999, International Business Machines Corporation and others. All Rights Reserved. "
#define U_COPYRIGHT_STRING_LENGTH 160
/*===========================================================================*/
/* Include header for platform utilies */
/*===========================================================================*/

View file

@ -182,7 +182,7 @@ void writeConverterData(UConverterSharedData *mySharedData, const char *cName, U
cnvName = cName;
mem = udata_create("cnv", cnvName, &dataInfo, UCNV_COPYRIGHT_STRING, status);
mem = udata_create("cnv", cnvName, &dataInfo, U_COPYRIGHT_STRING, status);
WriteConverterSharedData(mem, mySharedData);
@ -317,7 +317,7 @@ void writeUConverterSharedDataToFile(const char* filename,
/*Writes a Sentinel value*/
T_FileStream_write(outfile, &myCheck, sizeof(int32_t));
T_FileStream_write(outfile, UCNV_COPYRIGHT_STRING, UCNV_COPYRIGHT_STRING_LENGTH);
T_FileStream_write(outfile, U_COPYRIGHT_STRING, U_COPYRIGHT_STRING_LENGTH);
/*Writes NULL in places where there is a pointer in order
*to enable bitwise equivalence of binary files

View file

@ -1,10 +1,4 @@
/DLL
/NOENTRY
/base:"0x4ad00000"
/comment:"*******************************************************************************"
/comment:"* COPYRIGHT: *"
/comment:"* (C) Copyright International Business Machines Corporation, 1999 *"
/comment:"* Licensed Material - Program-Property of IBM - All Rights Reserved. *"
/comment:"* US Government Users Restricted Rights - Use, duplication, or disclosure *"
/comment:"* restricted by GSA ADP Schedule Contract with IBM Corp. *"
/comment:"*******************************************************************************"
/comment:" Copyright (C) 1999 International Business Machines Corporation and others. All Rights Reserved. "