|
|
|
@ -222,7 +222,7 @@ namespace CppSharp.Generators.CSharp
@@ -222,7 +222,7 @@ namespace CppSharp.Generators.CSharp
|
|
|
|
|
|
|
|
|
|
// Generate all the internal function declarations.
|
|
|
|
|
foreach (var function in context.Functions) |
|
|
|
|
{ |
|
|
|
|
{ |
|
|
|
|
if (!function.IsInternal) continue; |
|
|
|
|
|
|
|
|
|
GenerateInternalFunction(function); |
|
|
|
@ -760,8 +760,8 @@ namespace CppSharp.Generators.CSharp
@@ -760,8 +760,8 @@ namespace CppSharp.Generators.CSharp
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
foreach (var field in @class.Fields) |
|
|
|
|
{ |
|
|
|
|
if (!nativeFields && ASTUtils.CheckIgnoreField(field)) continue; |
|
|
|
|
{ |
|
|
|
|
if (ASTUtils.CheckIgnoreField(field, nativeFields)) continue; |
|
|
|
|
action(field); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|