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:
parent
3c40f80f6d
commit
0e6a001091
4 changed files with 24 additions and 14 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue