Darren Schroeder
Darren Schroeder
I reopened it but it's pretty confusing to me what the difference is. Maybe there should be a separate issue?
I'm wondering how we can use this. I mean do we shell out and call an external from nushell or is there a crate we can use? I'll have to...
I wonder if this is the problem I was running into because I would always get "missing ';' like this, when running piggy.dll. ``` ... var scope = _stack.Peek(); var...
I watch your repo and check for changes every couple of days. I recompile if the changes look interesting. One thing I don't want to do is recompile all the...
Wow! Very nice. I made the following changes to the c# code so I can see the return string. ```cs static void Main(string[] args) { var test1 = Functions.Test1(); var...
It looks like project1.pig is doing the mapping work of "const char *" to "string", however, Functions.Test1() returns an IntPtr instead of a string. What am I missing?
Is the ast output somewhere with `simplepiggy`? It might be helpful for debugging but I'm not sure. I can't seem to figure out why "const char *" isn't being translated...
Yes, I have seen the project1.pig.cs and even tried to change it and recompile to no avail. Ok, I see the obj/Debug/netcoreapp2.2/ast.txt. That's what I was looking for. I'll need...
Wow! I didn't expect you to look at Leptonica. Thanks! Using cmake, if you do a build install, it copies everything to the defined install folder. So, for me, that...
I guess `allheaders.h` is not a concatenation but the prototype file for all functions. So, it would contain the items that go in the C# DllImport lines. You will have...