testing for errors
This commit is contained in:
parent
deacc20b41
commit
46566f5244
2 changed files with 2 additions and 1 deletions
|
@ -13,7 +13,7 @@ class Binding
|
||||||
public static Dictionary<CXCursorKind, function void(CXCursor)> CursorHandlers = new .() {
|
public static Dictionary<CXCursorKind, function void(CXCursor)> CursorHandlers = new .() {
|
||||||
(.CXCursor_FunctionDecl, => HandleFunctionDecl),
|
(.CXCursor_FunctionDecl, => HandleFunctionDecl),
|
||||||
(.CXCursor_StructDecl, => HandleStructDecl),
|
(.CXCursor_StructDecl, => HandleStructDecl),
|
||||||
(.CXCursor_FieldDecl, => HandleFieldDecl),
|
//(.CXCursor_, => HandleFieldDecl),
|
||||||
(.CXCursor_EnumDecl, => HandleEnumDecl),
|
(.CXCursor_EnumDecl, => HandleEnumDecl),
|
||||||
(.CXCursor_EnumConstantDecl, => HandleEnumConstDecl),
|
(.CXCursor_EnumConstantDecl, => HandleEnumConstDecl),
|
||||||
(.CXCursor_ParmDecl, => DoNothing),
|
(.CXCursor_ParmDecl, => DoNothing),
|
||||||
|
|
|
@ -6,6 +6,7 @@ class Program
|
||||||
{
|
{
|
||||||
public static int Main(String[] args)
|
public static int Main(String[] args)
|
||||||
{
|
{
|
||||||
|
Binding.Options.Namespace = "sqlite3_";
|
||||||
Console.WriteLine("""
|
Console.WriteLine("""
|
||||||
Caa - Generate a Beef binding for c headers
|
Caa - Generate a Beef binding for c headers
|
||||||
Version 1.0.0
|
Version 1.0.0
|
||||||
|
|
Loading…
Add table
Reference in a new issue