mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-09 20:12:21 +02:00
Sized-array calling convention fix
This commit is contained in:
parent
80fcf84de2
commit
8a63a7ed80
5 changed files with 17 additions and 5 deletions
|
@ -534,6 +534,11 @@ extern "C" Interop::StructJ Func4J(Interop::StructJ arg0, Interop::StructJ arg1,
|
|||
return ret;
|
||||
}
|
||||
|
||||
extern "C" double Func5(float v0[2], float v1[3])
|
||||
{
|
||||
return v0[0] + v0[1]*10 + v1[0]*100 + v1[1]*1000 + v1[2]*10000;
|
||||
}
|
||||
|
||||
void UseIt()
|
||||
{
|
||||
Interop::StructA sa;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue