Commit cee48cc7 authored by Alexandre Julliard's avatar Alexandre Julliard

winebuild: Make the 32-bit side of a 16-bit module always a DLL.

parent d085e5ba
......@@ -826,11 +826,7 @@ void add_16bit_exports( DLLSPEC *spec32, DLLSPEC *spec16 )
ORDDEF *odp;
spec32->file_name = xstrdup( spec16->file_name );
if (spec16->characteristics & IMAGE_FILE_DLL)
{
spec32->characteristics = IMAGE_FILE_DLL;
spec32->init_func = xstrdup( "DllMain" );
}
spec32->characteristics = IMAGE_FILE_DLL;
/* add an export for the NE module */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment