Ove Kaaven <[EMAIL PROTECTED]> writes:

> So how were we supposed to make Winelib apps use the crtdll equivalents of
> fopen() and friends cleanly again?

The idea is once we get import tables in builtin dlls (real soon now)
you can import dlls from your app spec file and the dll symbols will
be used before normal ELF linking. So if your app makes calls to
fopen() and you import crtdll, fopen() will automagically resolve to
the crtdll version.

The other issue is that if you import crtdll you then need to compile
with crtdll-compatible include files so that all types are defined
correctly. This shouldn't matter for fopen() though.

-- 
Alexandre Julliard
[EMAIL PROTECTED]

Reply via email to