in reply to Failure to load Win32::NetResource
From a cursory scan of the MSDN pages for the API's imported by NetResource.dll, it looks like they should all be available under '98. However, if you are passing in strings that contain wide chars, then the code will be trying to use the xxxW versions of the APIs and these are only available under '98 if you have installed MS Layer for Unicode.
You might be able to bypass the problem by using Win32::Api to use the ascii suffix versions of the apis directly, but if your UNC contain wide chars, that may not help.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Failure to load Win32::NetResource
by bart (Canon) on Sep 13, 2004 at 21:53 UTC | |
by BrowserUk (Patriarch) on Sep 13, 2004 at 22:01 UTC |