From f1e08a23facb2d718276b3fbf59b0df2b54fceb9 Mon Sep 17 00:00:00 2001
From: Kenneth Russel <kbrussel@alum.mit.edu>
Date: Tue, 27 May 2008 10:06:20 +0000
Subject: Changed implementation of ArgumentIsString to work with
 wide-character null-terminated strings on Windows. Changed Windows dynamic
 linker to use LoadLibraryW which is the only variant available on Windows CE.
 Changed GetProcAddress to explicitly named GetProcAddressA; this is
 implicitly the only variant available on Windows XP. Tested by compiling
 gluegen-rt.dll for both Windows XP and Windows CE. Also brought
 dynlink-unix-CustomJavaCode.java in line with modifications that were
 apparently hand made to the UnixDynamicLinkerImpl and MacOSXDynamicLinkerImpl
 classes.

git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/gluegen/trunk@79 a78bb65f-1512-4460-ba86-f6dc96a7bf27
---
 make/dynlink-windows-CustomJavaCode.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'make/dynlink-windows-CustomJavaCode.java')

diff --git a/make/dynlink-windows-CustomJavaCode.java b/make/dynlink-windows-CustomJavaCode.java
index 986ec81..4101f4c 100755
--- a/make/dynlink-windows-CustomJavaCode.java
+++ b/make/dynlink-windows-CustomJavaCode.java
@@ -1,9 +1,9 @@
 public long openLibrary(String libraryName) {
-  return LoadLibraryA(libraryName);
+  return LoadLibraryW(libraryName);
 }
 
 public long lookupSymbol(long libraryHandle, String symbolName) {
-  return GetProcAddress(libraryHandle, symbolName);
+  return GetProcAddressA(libraryHandle, symbolName);
 }
 
 public void closeLibrary(long libraryHandle) {
-- 
cgit v1.2.3