mmsystem.dll should be automatically loaded for 16-bit apps.
This commit is contained in:
parent
df90b00e12
commit
3f089a1962
|
@ -34,6 +34,9 @@ int WINAPI wine_initial_task( HINSTANCE inst, HINSTANCE prev, LPSTR cmdline, INT
|
||||||
HINSTANCE16 instance;
|
HINSTANCE16 instance;
|
||||||
HMODULE user32;
|
HMODULE user32;
|
||||||
|
|
||||||
|
/* some programs assume mmsystem is always present */
|
||||||
|
LoadLibrary16( "mmsystem.dll" );
|
||||||
|
|
||||||
if ((instance = NE_StartMain( main_exe_name, main_exe_file )) < 32)
|
if ((instance = NE_StartMain( main_exe_name, main_exe_file )) < 32)
|
||||||
{
|
{
|
||||||
if (instance == 11) /* try DOS format */
|
if (instance == 11) /* try DOS format */
|
||||||
|
|
Loading…
Reference in New Issue