I found a wrapper located at 47E780 hex. How can i call it without use of inline assembly? it is of cdecl type, and has 6 float parameters.
Code:
typedef void (__cdecl *pPreto) (float a, float b, float c, float d, float e); //Global
pPreto xNegrinho = (pPreto)0x0047E780;
main or any other function
float x = 35;
xNegrinho(x,x,x,x,x); //calling