how to use luabind::out_value policy

Started by
-1 comments, last by dot99 18 years, 8 months ago
Hi all I've read the luabind document about out_value policy already, but still I can't use the policy on a function takes more than one pointer parameter:

void testF1(int* a, int* b)
{
   *a = 10;
   *b = 20;
}
any ideal? thanks

This topic is closed to new replies.

Advertisement