]>
Commit | Line | Data |
---|---|---|
46f4442e A |
1 | /* |
2 | * | |
b331163b | 3 | * (C) Copyright IBM Corp. 1998-2014 - All Rights Reserved |
46f4442e A |
4 | * |
5 | */ | |
6 | ||
7 | #ifndef __XMLREADER_H | |
8 | #define __XMLREADER_H | |
9 | ||
b331163b | 10 | #include "layout/LETypes.h" |
46f4442e A |
11 | #include "letest.h" |
12 | ||
13 | typedef void (*TestCaseCallback) (const char *testID, | |
14 | const char *fontName, | |
15 | const char *fontVersion, | |
16 | const char *fontChecksum, | |
17 | le_int32 scriptCode, | |
18 | le_int32 languageCode, | |
19 | const LEUnicode *text, | |
20 | le_int32 charCount, | |
21 | TestResult *expected); | |
22 | ||
23 | U_CAPI void readTestFile(const char *testFilePath, TestCaseCallback callback); | |
24 | ||
25 | #endif |