-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generate extra functions and structs
- Loading branch information
1 parent
87b17b1
commit b8822db
Showing
12 changed files
with
119 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
namespace FreeTypeSharp | ||
{ | ||
using System.Runtime.InteropServices; | ||
using System; | ||
|
||
[StructLayout(LayoutKind.Sequential)] | ||
public unsafe struct FT_Module_Class_ | ||
{ | ||
public UIntPtr module_flags; | ||
public IntPtr module_size; | ||
public byte* module_name; | ||
public IntPtr module_version; | ||
public IntPtr module_requires; | ||
public void* module_interface; | ||
public void* module_init; | ||
public void* module_done; | ||
public void* get_interface; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
namespace FreeTypeSharp | ||
{ | ||
using System.Runtime.InteropServices; | ||
using System; | ||
|
||
[StructLayout(LayoutKind.Sequential)] | ||
public unsafe struct FT_RendererRec_ | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
namespace FreeTypeSharp | ||
{ | ||
using System.Runtime.InteropServices; | ||
using System; | ||
|
||
[StructLayout(LayoutKind.Sequential)] | ||
public unsafe struct FT_StreamDesc_ | ||
{ | ||
public IntPtr value; | ||
public void* pointer; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
namespace FreeTypeSharp | ||
{ | ||
public enum FT_TrueTypeEngineType_ : int | ||
{ | ||
FT_TRUETYPE_ENGINE_TYPE_NONE = 0, | ||
FT_TRUETYPE_ENGINE_TYPE_UNPATENTED = 1, | ||
FT_TRUETYPE_ENGINE_TYPE_PATENTED = 2 | ||
} | ||
} |