blob: 80e2ae71c8b4cedf9ca7550ee4cc86b3b7d9b98e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
{ This is an autogenerated unit using gobject introspection (gir2pascal). Do not Edit. }
unit Lazfreetype2_2;
{$MODE OBJFPC}{$H+}
{$PACKRECORDS C}
{$MODESWITCH DUPLICATELOCALS+}
{$ifdef Unix}
{$endif}
{$WARN 3031 off : Values in enumeration types have to be ascending}
interface
uses
CTypes;
const
{$ifdef MsWindows}
Lazfreetype2_2_library = '.dll';
{$else}
Lazfreetype2_2_library = '';
{$endif}
type
{ TFT_Bitmap }
PPFT_Bitmap = ^PFT_Bitmap;
PFT_Bitmap = ^TFT_Bitmap;
TFT_Bitmap = record
end;
{ TFT_Face }
PPFT_Face = ^PFT_Face;
PFT_Face = ^TFT_Face;
TFT_Face = record
end;
{ TFT_Library }
PPFT_Library = ^PFT_Library;
PFT_Library = ^TFT_Library;
TFT_Library = record
end;
{ TFT_Int32 }
PPFT_Int32 = ^PFT_Int32;
PFT_Int32 = ^TFT_Int32;
TFT_Int32 = cint32;
procedure FT_Library_Version; cdecl; external Lazfreetype2_2_library name 'FT_Library_Version';
implementation
end.
|