git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2008-maciekd@10618 626c5289-ae23-0410-ae9c-e8d60b6d4f22
10 lines
189 B
C
10 lines
189 B
C
#include <stdio.h>
|
|
|
|
#include "example_proxy.h"
|
|
|
|
int main(int argc, char** argv) {
|
|
Bar b = foo_ret_val();
|
|
//Bar * bp = foo_ret_ptr(NULL);
|
|
printf("x = %d\n", Bar_get(&b));
|
|
}
|
|
|