From: <sp...@us...> - 2010-09-27 00:26:11
|
Revision: 3416 http://java-game-lib.svn.sourceforge.net/java-game-lib/?rev=3416&view=rev Author: spasi Date: 2010-09-27 00:25:59 +0000 (Mon, 27 Sep 2010) Log Message: ----------- Added AL/CL NativeGetFunctionPointer prefixes. Modified Paths: -------------- trunk/LWJGL/src/native/macosx/macosx_al.c trunk/LWJGL/src/native/macosx/macosx_cl.c Modified: trunk/LWJGL/src/native/macosx/macosx_al.c =================================================================== --- trunk/LWJGL/src/native/macosx/macosx_al.c 2010-09-27 00:13:31 UTC (rev 3415) +++ trunk/LWJGL/src/native/macosx/macosx_al.c 2010-09-27 00:25:59 UTC (rev 3416) @@ -52,7 +52,7 @@ static const struct mach_header* handleOAL = NULL; static CFBundleRef openal_bundle = NULL; -void *NativeGetFunctionPointer(const char *function) { +void *extal_NativeGetFunctionPointer(const char *function) { void *address = NULL; if (handleOAL != NULL) { char *mac_symbol_name = (char *)malloc((strlen(function) + 2)*sizeof(char)); Modified: trunk/LWJGL/src/native/macosx/macosx_cl.c =================================================================== --- trunk/LWJGL/src/native/macosx/macosx_cl.c 2010-09-27 00:13:31 UTC (rev 3415) +++ trunk/LWJGL/src/native/macosx/macosx_cl.c 2010-09-27 00:25:59 UTC (rev 3416) @@ -46,7 +46,7 @@ static const struct mach_header* handleOCL = NULL; static CFBundleRef opencl_bundle = NULL; -void *NativeGetFunctionPointer(const char *function) { +void *extcl_NativeGetFunctionPointer(const char *function) { void *address = NULL; if (handleOCL != NULL) { char *mac_symbol_name = (char *)malloc((strlen(function) + 2)*sizeof(char)); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |