Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(319)

Side by Side Diff: source/test/letest/cfonts.h

Issue 845603002: Update ICU to 54.1 step 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu.git@master
Patch Set: remove unusued directories Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « source/test/letest/SimpleFontInstance.cpp ('k') | source/test/letest/cfonts.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * 2 *
3 * (C) Copyright IBM Corp. 1998-2008 - All Rights Reserved 3 * (C) Copyright IBM Corp. 1998-2014 - All Rights Reserved
4 * 4 *
5 */ 5 */
6 6
7 #ifndef USING_ICULEHB /* C API not available under HB */
8
7 #ifndef __CFONTS_H 9 #ifndef __CFONTS_H
8 #define __CFONTS_H 10 #define __CFONTS_H
9 11
10 #include "LETypes.h" 12 #include "LETypes.h"
11 #include "loengine.h" 13 #include "loengine.h"
12 14
13 le_font *le_portableFontOpen(const char *fileName, 15 le_font *le_portableFontOpen(const char *fileName,
14 float pointSize, 16 float pointSize,
15 LEErrorCode *status); 17 LEErrorCode *status);
16 18
17 le_font *le_simpleFontOpen(float pointSize, 19 le_font *le_simpleFontOpen(float pointSize,
18 LEErrorCode *status); 20 LEErrorCode *status);
19 21
20 void le_fontClose(le_font *font); 22 void le_fontClose(le_font *font);
21 23
22 const char *le_getNameString(le_font *font, le_uint16 nameID, le_uint16 platform , le_uint16 encoding, le_uint16 language); 24 const char *le_getNameString(le_font *font, le_uint16 nameID, le_uint16 platform , le_uint16 encoding, le_uint16 language);
23 25
24 const LEUnicode16 *le_getUnicodeNameString(le_font *font, le_uint16 nameID, le_u int16 platform, le_uint16 encoding, le_uint16 language); 26 const LEUnicode16 *le_getUnicodeNameString(le_font *font, le_uint16 nameID, le_u int16 platform, le_uint16 encoding, le_uint16 language);
25 27
26 void le_deleteNameString(le_font *font, const char *name); 28 void le_deleteNameString(le_font *font, const char *name);
27 29
28 void le_deleteUnicodeNameString(le_font *font, const LEUnicode16 *name); 30 void le_deleteUnicodeNameString(le_font *font, const LEUnicode16 *name);
29 31
30 le_uint32 le_getFontChecksum(le_font *font); 32 le_uint32 le_getFontChecksum(le_font *font);
31 33
32 #endif 34 #endif
35 #endif
OLDNEW
« no previous file with comments | « source/test/letest/SimpleFontInstance.cpp ('k') | source/test/letest/cfonts.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698