Fix Savannah bug #38968.
* include/freetype/ftmodapi.h: Add `FT_EXPORT' to FT_Property_{Set,Get}. * src/base/ftobjs.c: Add `FT_EXPORT_DEF' to FT_Property_{Set,Get}.
This commit is contained in:
parent
ea2b4756e4
commit
d51ac9c7c6
|
@ -1,3 +1,12 @@
|
||||||
|
2013-05-12 Werner Lemberg <wl@gnu.org>
|
||||||
|
|
||||||
|
Fix Savannah bug #38968.
|
||||||
|
|
||||||
|
* include/freetype/ftmodapi.h: Add `FT_EXPORT' to
|
||||||
|
FT_Property_{Set,Get}.
|
||||||
|
* src/base/ftobjs.c: Add `FT_EXPORT_DEF' to
|
||||||
|
FT_Property_{Set,Get}.
|
||||||
|
|
||||||
2013-05-10 Werner Lemberg <wl@gnu.org>
|
2013-05-10 Werner Lemberg <wl@gnu.org>
|
||||||
|
|
||||||
[sfnt] Clean up bitmap code.
|
[sfnt] Clean up bitmap code.
|
||||||
|
|
|
@ -329,7 +329,7 @@ FT_BEGIN_HEADER
|
||||||
* 2.4.11
|
* 2.4.11
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
FT_Error
|
FT_EXPORT( FT_Error )
|
||||||
FT_Property_Set( FT_Library library,
|
FT_Property_Set( FT_Library library,
|
||||||
const FT_String* module_name,
|
const FT_String* module_name,
|
||||||
const FT_String* property_name,
|
const FT_String* property_name,
|
||||||
|
@ -393,7 +393,7 @@ FT_BEGIN_HEADER
|
||||||
* 2.4.11
|
* 2.4.11
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
FT_Error
|
FT_EXPORT( FT_Error )
|
||||||
FT_Property_Get( FT_Library library,
|
FT_Property_Get( FT_Library library,
|
||||||
const FT_String* module_name,
|
const FT_String* module_name,
|
||||||
const FT_String* property_name,
|
const FT_String* property_name,
|
||||||
|
|
|
@ -4516,7 +4516,7 @@
|
||||||
|
|
||||||
/* documentation is in ftmodapi.h */
|
/* documentation is in ftmodapi.h */
|
||||||
|
|
||||||
FT_Error
|
FT_EXPORT_DEF( FT_Error )
|
||||||
FT_Property_Set( FT_Library library,
|
FT_Property_Set( FT_Library library,
|
||||||
const FT_String* module_name,
|
const FT_String* module_name,
|
||||||
const FT_String* property_name,
|
const FT_String* property_name,
|
||||||
|
@ -4532,7 +4532,7 @@
|
||||||
|
|
||||||
/* documentation is in ftmodapi.h */
|
/* documentation is in ftmodapi.h */
|
||||||
|
|
||||||
FT_Error
|
FT_EXPORT_DEF( FT_Error )
|
||||||
FT_Property_Get( FT_Library library,
|
FT_Property_Get( FT_Library library,
|
||||||
const FT_String* module_name,
|
const FT_String* module_name,
|
||||||
const FT_String* property_name,
|
const FT_String* property_name,
|
||||||
|
|
Loading…
Reference in New Issue