| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1998-2004 David Turner and Werner Lemberg | 2 * Copyright (C) 1998-2004 David Turner and Werner Lemberg |
| 3 * Copyright (C) 2006 Behdad Esfahbod | 3 * Copyright (C) 2006 Behdad Esfahbod |
| 4 * | 4 * |
| 5 * This is part of HarfBuzz, an OpenType Layout engine library. | 5 * This is part of HarfBuzz, an OpenType Layout engine library. |
| 6 * | 6 * |
| 7 * Permission is hereby granted, without written agreement and without | 7 * Permission is hereby granted, without written agreement and without |
| 8 * license or royalty fees, to use, copy, modify, and distribute this | 8 * license or royalty fees, to use, copy, modify, and distribute this |
| 9 * software and its documentation for any purpose, provided that the | 9 * software and its documentation for any purpose, provided that the |
| 10 * above copyright notice and the following two paragraphs appear in | 10 * above copyright notice and the following two paragraphs appear in |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 _HB_OPEN_Load_ClassDefinition( HB_ClassDefinition* cd, | 62 _HB_OPEN_Load_ClassDefinition( HB_ClassDefinition* cd, |
| 63 HB_UShort limit, | 63 HB_UShort limit, |
| 64 HB_Stream input ); | 64 HB_Stream input ); |
| 65 HB_INTERNAL HB_Error | 65 HB_INTERNAL HB_Error |
| 66 _HB_OPEN_Load_EmptyOrClassDefinition( HB_ClassDefinition* cd, | 66 _HB_OPEN_Load_EmptyOrClassDefinition( HB_ClassDefinition* cd, |
| 67 HB_UShort limit, | 67 HB_UShort limit, |
| 68 HB_UInt class_offset
, | 68 HB_UInt class_offset
, |
| 69 HB_UInt base_offset, | 69 HB_UInt base_offset, |
| 70 HB_Stream input ); | 70 HB_Stream input ); |
| 71 HB_INTERNAL HB_Error | 71 HB_INTERNAL HB_Error |
| 72 _HB_OPEN_Load_Device( HB_Device* d, | 72 _HB_OPEN_Load_Device( HB_Device** d, |
| 73 HB_Stream input ); | 73 HB_Stream input ); |
| 74 | 74 |
| 75 HB_INTERNAL void _HB_OPEN_Free_ScriptList( HB_ScriptList* sl ); | 75 HB_INTERNAL void _HB_OPEN_Free_ScriptList( HB_ScriptList* sl ); |
| 76 HB_INTERNAL void _HB_OPEN_Free_FeatureList( HB_FeatureList* fl ); | 76 HB_INTERNAL void _HB_OPEN_Free_FeatureList( HB_FeatureList* fl ); |
| 77 HB_INTERNAL void _HB_OPEN_Free_LookupList( HB_LookupList* ll, | 77 HB_INTERNAL void _HB_OPEN_Free_LookupList( HB_LookupList* ll, |
| 78 HB_Type type ); | 78 HB_Type type ); |
| 79 | 79 |
| 80 HB_INTERNAL void _HB_OPEN_Free_Coverage( HB_Coverage* c ); | 80 HB_INTERNAL void _HB_OPEN_Free_Coverage( HB_Coverage* c ); |
| 81 HB_INTERNAL void _HB_OPEN_Free_ClassDefinition( HB_ClassDefinition* cd ); | 81 HB_INTERNAL void _HB_OPEN_Free_ClassDefinition( HB_ClassDefinition* cd ); |
| 82 HB_INTERNAL void _HB_OPEN_Free_Device( HB_Device* d ); | 82 HB_INTERNAL void _HB_OPEN_Free_Device( HB_Device* d ); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 93 HB_UShort* klass, | 93 HB_UShort* klass, |
| 94 HB_UShort* index ); | 94 HB_UShort* index ); |
| 95 HB_INTERNAL HB_Error | 95 HB_INTERNAL HB_Error |
| 96 _HB_OPEN_Get_Device( HB_Device* d, | 96 _HB_OPEN_Get_Device( HB_Device* d, |
| 97 HB_UShort size, | 97 HB_UShort size, |
| 98 HB_Short* value ); | 98 HB_Short* value ); |
| 99 | 99 |
| 100 HB_END_HEADER | 100 HB_END_HEADER |
| 101 | 101 |
| 102 #endif /* HARFBUZZ_OPEN_PRIVATE_H */ | 102 #endif /* HARFBUZZ_OPEN_PRIVATE_H */ |
| OLD | NEW |