Skip to content

Instantly share code, notes, and snippets.

@arn-e
Created January 22, 2013 01:35
Show Gist options
  • Save arn-e/4591284 to your computer and use it in GitHub Desktop.
Save arn-e/4591284 to your computer and use it in GitHub Desktop.
env_create_env_structure.c
struct env_type create_env_structure()
{
struct env_type env_struct, *env_ptr;
env_struct.GetIntArrayElements = &GetIntArrayElementsFunc;
env_struct.ReleaseIntArrayElements = &ReleaseIntArrayElementsFunc;
return env_struct;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment