Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
FreeType
FreeType
Commits
3ee44508
Commit
3ee44508
authored
Oct 03, 2000
by
David Turner
Browse files
changing the linkage type of
FT_New_GlyphSlot and FT_Done_GlyphSlot to BASE_DEF instead of FT_EXPORT_DEF
parent
cc11a05b
Changes
2
Hide whitespace changes
Inline
Side-by-side
include/freetype/internal/ftobjs.h
View file @
3ee44508
...
@@ -207,10 +207,11 @@
...
@@ -207,10 +207,11 @@
FT_EXPORT_DEF
(
FT_Error
)
FT_Done_Size
(
FT_Size
size
);
FT_EXPORT_DEF
(
FT_Error
)
FT_Done_Size
(
FT_Size
size
);
FT_EXPORT_DEF
(
FT_Error
)
FT_New_GlyphSlot
(
FT_Face
face
,
FT_GlyphSlot
*
aslot
);
FT_EXPORT_DEF
(
void
)
FT_Done_GlyphSlot
(
FT_GlyphSlot
slot
);
BASE_DEF
(
FT_Error
)
FT_New_GlyphSlot
(
FT_Face
face
,
FT_GlyphSlot
*
aslot
);
BASE_DEF
(
void
)
FT_Done_GlyphSlot
(
FT_GlyphSlot
slot
);
/*************************************************************************/
/*************************************************************************/
...
...
src/base/ftobjs.c
View file @
3ee44508
...
@@ -764,8 +764,8 @@
...
@@ -764,8 +764,8 @@
/* <Return> */
/* <Return> */
/* FreeType error code. 0 means success. */
/* FreeType error code. 0 means success. */
/* */
/* */
FT_EXPORT
_FUNC
(
FT_Error
)
FT_New_GlyphSlot
(
FT_Face
face
,
BASE
_FUNC
(
FT_Error
)
FT_New_GlyphSlot
(
FT_Face
face
,
FT_GlyphSlot
*
aslot
)
FT_GlyphSlot
*
aslot
)
{
{
FT_Error
error
;
FT_Error
error
;
FT_Driver
driver
;
FT_Driver
driver
;
...
@@ -818,7 +818,7 @@
...
@@ -818,7 +818,7 @@
/* <Input> */
/* <Input> */
/* slot :: A handle to a target glyph slot. */
/* slot :: A handle to a target glyph slot. */
/* */
/* */
FT_EXPORT
_FUNC
(
void
)
FT_Done_GlyphSlot
(
FT_GlyphSlot
slot
)
BASE
_FUNC
(
void
)
FT_Done_GlyphSlot
(
FT_GlyphSlot
slot
)
{
{
if
(
slot
)
if
(
slot
)
{
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment