<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style></head>
<body class='hmmessage'><div dir='ltr'>
<a href="mailto:nestedvm@lists.hcoop.net"></a>I have been looking at NestedVM calls to functions in the CallTest.java example. It appears to me you can pass Strings and integers quite easily to functions but is there a way to pass a float?<br><br>For example this passes an integer 2 to the function 'echo' in test.c:<br>rt.call("echo",new Object[]{"Hello, World, from the Object[] call method",new Integer(2)});<br><br>I modified test.c to have a float in the function but it is always zero:<br>rt.call("echo",new Object[]{"Hello, World, from the Object[] call method",new Integer(2)}, new Float(3.5f));<br><br>I have tried converting the float into raw int bits:<br>ia[i]=Float.floatToRawIntBits(f);<br><br>in runtime.java but just comes out to a huge integer.<br><br>                                               </div></body>
</html>