ReactOS 0.4.15-dev-7942-gd23573b
ftapi.c File Reference
#include <ft2build.h>
Include dependency graph for ftapi.c:

Go to the source code of this file.

Functions

 FT_New_Memory_Stream (FT_Library library, FT_Byte *base, FT_ULong size, FT_Stream stream)
 
 FT_Seek_Stream (FT_Stream stream, FT_ULong pos)
 
 FT_Skip_Stream (FT_Stream stream, FT_Long distance)
 
 FT_Read_Stream (FT_Stream stream, FT_Byte *buffer, FT_ULong count)
 
 FT_Read_Stream_At (FT_Stream stream, FT_ULong pos, FT_Byte *buffer, FT_ULong count)
 
 FT_Extract_Frame (FT_Stream stream, FT_ULong count, FT_Byte **pbytes)
 
 FT_Release_Frame (FT_Stream stream, FT_Byte **pbytes)
 
 FT_Access_Frame (FT_Stream stream, FT_ULong count)
 
 FT_Forget_Frame (FT_Stream stream)
 

Function Documentation

◆ FT_Access_Frame()

FT_Access_Frame ( FT_Stream  stream,
FT_ULong  count 
)

Definition at line 107 of file ftapi.c.

109 {
111 }
FT_Stream_EnterFrame(FT_Stream stream, FT_ULong count)
Definition: ftstream.c:234
GLuint GLuint GLsizei count
Definition: gl.h:1545
Definition: parse.h:23

◆ FT_Extract_Frame()

FT_Extract_Frame ( FT_Stream  stream,
FT_ULong  count,
FT_Byte **  pbytes 
)

Definition at line 91 of file ftapi.c.

94 {
95 return FT_Stream_ExtractFrame( stream, count, pbytes );
96 }
FT_Stream_ExtractFrame(FT_Stream stream, FT_ULong count, FT_Byte **pbytes)
Definition: ftstream.c:193

◆ FT_Forget_Frame()

FT_Forget_Frame ( FT_Stream  stream)

Definition at line 115 of file ftapi.c.

116 {
118 }
FT_Stream_ExitFrame(FT_Stream stream)
Definition: ftstream.c:314

◆ FT_New_Memory_Stream()

FT_New_Memory_Stream ( FT_Library  library,
FT_Byte base,
FT_ULong  size,
FT_Stream  stream 
)

Definition at line 44 of file ftapi.c.

48 {
50
52 }
FT_Library library
Definition: cffdrivr.c:654
#define FT_UNUSED(arg)
Definition: ftconfig.h:101
FT_Stream_OpenMemory(FT_Stream stream, const FT_Byte *base, FT_ULong size)
Definition: ftstream.c:35
GLsizeiptr size
Definition: glext.h:5919

◆ FT_Read_Stream()

FT_Read_Stream ( FT_Stream  stream,
FT_Byte buffer,
FT_ULong  count 
)

Definition at line 72 of file ftapi.c.

75 {
77 }
FT_Stream_Read(FT_Stream stream, FT_Byte *buffer, FT_ULong count)
Definition: ftstream.c:110
GLuint buffer
Definition: glext.h:5915

◆ FT_Read_Stream_At()

FT_Read_Stream_At ( FT_Stream  stream,
FT_ULong  pos,
FT_Byte buffer,
FT_ULong  count 
)

Definition at line 81 of file ftapi.c.

85 {
87 }
FT_Stream_ReadAt(FT_Stream stream, FT_ULong pos, FT_Byte *buffer, FT_ULong count)
Definition: ftstream.c:119

◆ FT_Release_Frame()

FT_Release_Frame ( FT_Stream  stream,
FT_Byte **  pbytes 
)

Definition at line 100 of file ftapi.c.

102 {
104 }
FT_Stream_ReleaseFrame(FT_Stream stream, FT_Byte **pbytes)
Definition: ftstream.c:215

◆ FT_Seek_Stream()

FT_Seek_Stream ( FT_Stream  stream,
FT_ULong  pos 
)

Definition at line 56 of file ftapi.c.

58 {
59 return FT_Stream_Seek( stream, pos );
60 }
FT_Stream_Seek(FT_Stream stream, FT_ULong pos)
Definition: ftstream.c:57

◆ FT_Skip_Stream()

FT_Skip_Stream ( FT_Stream  stream,
FT_Long  distance 
)

Definition at line 64 of file ftapi.c.

66 {
68 }
FT_Stream_Skip(FT_Stream stream, FT_Long distance)
Definition: ftstream.c:92
GLsizei GLsizei GLfloat distance
Definition: glext.h:11755