* Sync with Wine 1.7.1.

svn path=/trunk/; revision=60169
This commit is contained in:
Amine Khaldi 2013-09-16 15:15:20 +00:00
parent 9b7d4ccbd0
commit e943bf4e82
3 changed files with 4 additions and 6 deletions

View file

@ -10,13 +10,12 @@ list(APPEND SOURCE
asmname.c
assembly.c
fusion.c
version.rc
${CMAKE_CURRENT_BINARY_DIR}/fusion_stubs.c
${CMAKE_CURRENT_BINARY_DIR}/fusion.def)
add_library(fusion SHARED ${SOURCE})
add_library(fusion SHARED ${SOURCE} version.rc)
set_module_type(fusion win32dll)
target_link_libraries(fusion wine uuid)
target_link_libraries(fusion wine)
add_importlibs(fusion advapi32 dbghelp shlwapi user32 msvcrt kernel32 ntdll)
add_cd_file(TARGET fusion DESTINATION reactos/Microsoft.NET/Framework/v1.0.3705 FOR all)
add_cd_file(TARGET fusion DESTINATION reactos/Microsoft.NET/Framework/v1.1.4322 FOR all)

View file

@ -599,8 +599,7 @@ static HRESULT parse_clr_metadata(ASSEMBLY *assembly)
else if (!lstrcmpA(stream, "#Blob") || !lstrcmpA(stream, "Blob"))
assembly->blobs = assembly_data_offset(assembly, ofs);
ptr += lstrlenA(stream) + 1;
ptr = (BYTE *)(((UINT_PTR)ptr + 3) & ~3); /* align on DWORD boundary */
ptr += ((lstrlenA(stream) + 1) + 3) & ~3; /* align on DWORD boundary */
}
return S_OK;

View file

@ -72,7 +72,7 @@ reactos/dll/win32/dbghelp # Synced to Wine-1.7.1
reactos/dll/win32/dciman32 # Synced to Wine-1.7.1
reactos/dll/win32/dwmapi # Synced to Wine-1.7.1
reactos/dll/win32/faultrep # Synced to Wine-1.7.1
reactos/dll/win32/fusion # Synced to Wine-1.5.26
reactos/dll/win32/fusion # Synced to Wine-1.7.1
reactos/dll/win32/gdiplus # Synced to Wine-1.5.26
reactos/dll/win32/hhctrl.ocx # Synced to Wine-1.5.26
reactos/dll/win32/hlink # Synced to Wine-1.5.4