mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 22:44:49 +00:00
ICU-157 Updated the copyright notice in the icudata.dll file.
X-SVN-Rev: 336
This commit is contained in:
parent
0b5046a971
commit
61c30e4e4e
4 changed files with 9 additions and 14 deletions
|
@ -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)
|
||||
|
|
|
@ -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 */
|
||||
/*===========================================================================*/
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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. "
|
||||
|
|
Loading…
Add table
Reference in a new issue