ChangeSet ID: 7390
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2003/03/06 17:41:37
Modified files:
loader : pe_image.c module.c
include : module.h
dlls/ntdll : ntdll_misc.h loader.c
Log message:
Eric Pouech <eric.pouech(a)wanadoo.fr>
- implemented LdrGetProcedureAddress and made use of it for
GetProcAddress
- implemented LdrGetDllHandle and made use of it in GetModuleHandle
- removed MODULE_DllThreadDetach from loader/module.c (should have
been removed in a previous patch)
Patch: http://cvs.winehq.com/patch.py?id=7390
Old revision New revision Changes Path
1.120 1.121 +1 -0 wine/loader/pe_image.c
1.173 1.174 +57 -107 wine/loader/module.c
1.71 1.72 +1 -3 wine/include/module.h
1.7 1.8 +3 -0 wine/dlls/ntdll/ntdll_misc.h
1.9 1.10 +97 -14 wine/dlls/ntdll/loader.c
ChangeSet ID: 7388
CVSROOT: /opt/cvs-commit
Module name: wine
Changes by: julliard(a)wine.codeweavers.com 2003/03/06 16:46:35
Modified files:
dlls/dsound : primary.c mixer.c dsound_private.h
dsound_main.c capture.c
Log message:
Robert Reif <reif(a)earthlink.net>
Added a configuration option for setting the hardware acceleration
level just like the direct sound control panel app.
More work on the full duplex interface so the compile warning is no
longer generated. Full duplex interface is still stubbed out.
Moved full duplex mixer reset fix into wineoss driver where it
belongs.
Added some more locking fixes.
Capture and full duplex are now stable.
Patch: http://cvs.winehq.com/patch.py?id=7388
Old revision New revision Changes Path
1.7 1.8 +8 -2 wine/dlls/dsound/primary.c
1.7 1.8 +1 -5 wine/dlls/dsound/mixer.c
1.3 1.4 +7 -0 wine/dlls/dsound/dsound_private.h
1.73 1.74 +30 -2 wine/dlls/dsound/dsound_main.c
1.5 1.6 +83 -3 wine/dlls/dsound/capture.c