1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Fixed Linux interop issue

This commit is contained in:
Brian Fiete 2020-07-15 06:28:41 -07:00
parent 3c40f80f6d
commit 0e6a001091
4 changed files with 24 additions and 14 deletions

View file

@ -362,6 +362,11 @@ extern "C" int Func0W(int a, Interop::StructW b)
return a + (int)b.mX * 100;
}
extern "C" int Func0KM(Interop::StructK a, Interop::StructM b, Interop::StructK c)
{
return (int)a.mX + (int)b.mX * 100 + (int)c.mX * 1000;
}
//////////////////////////////////////////////////////////////////////////
extern "C" int Func1A(Interop::StructA arg0, Interop::StructA arg1, int arg2)