msvcrt error

Francois Gouget fgouget at free.fr
Mon Apr 30 16:37:46 CDT 2001


On Mon, 30 Apr 2001, Chris Morgan wrote:

> I'm getting this error:
> 
> Could not stat /mnt/fd0 (No such file or directory), ignoring drive A:
> err:win32:PE_FindExportedFunction function not found for forward 
> 'ntdll._iswctype' used by 'msvcrt.dll'. If you are using builtin 
> 'msvcrt.dll', try using the native one instead.
> err:win32:fixup_imports No implementation for MSVCRT.dll.636(iswctype) 
> imported from C:\program files\notepad.exe, setting to 0xdeadbeef
> ~/program files$ 
> 
> when running notepad.exe using builtin msvcrt.dll.  Any ideas on what might 
> be causing this?

   There's no '_' in the function name in ntdll. The attached patch
should fix this.


--
Francois Gouget         fgouget at free.fr        http://fgouget.free.fr/
  Good judgment comes from experience, and experience comes from bad judgment
                               -- Barry LePatner
-------------- next part --------------
Index: dlls/msvcrt/msvcrt.spec
===================================================================
RCS file: /home/cvs/wine/wine/dlls/msvcrt/msvcrt.spec,v
retrieving revision 1.11
diff -u -r1.11 msvcrt.spec
--- dlls/msvcrt/msvcrt.spec	2001/04/25 19:54:21	1.11
+++ dlls/msvcrt/msvcrt.spec	2001/04/30 21:33:10
@@ -648,7 +648,7 @@
 @ forward -noimport iswalpha ntdll._iswalpha
 @ cdecl iswascii(long) MSVCRT_iswascii
 @ cdecl iswcntrl(long) MSVCRT_iswcntrl
-@ forward -noimport iswctype ntdll._iswctype
+@ forward -noimport iswctype ntdll.iswctype
 @ cdecl iswdigit(long) MSVCRT_iswdigit
 @ cdecl iswgraph(long) MSVCRT_iswgraph
 @ cdecl iswlower(long) MSVCRT_iswlower


More information about the wine-patches mailing list