Darren Schroeder

Results 2076 comments of Darren Schroeder

Maybe I should just delete all these comments and say, Thanks, and you're right. ;)

ok, i have a new dotnet core console app created. I've changed my csproj to look like this. ``` Exe netcoreapp2.2 all runtime; build; native; contentfiles; analyzers include.c ast.txt "ID:/Src/GitHub/Leptonica/src"...

I just noticed that I do have an ast.txt file that is 6,298 kb. So, that part seems to be working.

The nodes look good in the ast.txt file. Thanks for the explanation. I understand how the included pig files pick up on the limit variable in the local lep.pig. I...

Yeah! I got a lep.pig.cs by taking the ast.txt file and running it through PiggyTool. Looking at it now.

LOL. I guess Piggy doesn't yet understand parameters named with data type names. `public static extern IntPtr sarrayCreateWordsFromString(string string);`

I have a project mostly working that uses the .cs generated from the command line with piggy. Changes: 1. Change DllImport with the name of a real dll. ```cs public...

I see this stuff in the ast.txt, except for the `#define` statements. It makes me wonder what % of items in my ast.txt is getting written out to .cs files...

I've seen two options based on other p/invoke tools. 1. Have some generic name with an incrementing value at the end. So, all enums in pix.c/.h would be PixEnum1, PixEnum2,...