Module: wine Branch: master Commit: 241b3928b114ad7be99f9a8808172c7e4b0d6928 URL: http://source.winehq.org/git/wine.git/?a=commit;h=241b3928b114ad7be99f9a8808... Author: Alasdair Sinclair <alasdairsinc(a)gmail.com> Date: Tue Jul 14 01:40:15 2015 +0000 ntdll: Add missing WINAPI to RtlDecompressFragment. --- dlls/ntdll/rtl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ntdll/rtl.c b/dlls/ntdll/rtl.c index 4aef1ee..d20a098 100644 --- a/dlls/ntdll/rtl.c +++ b/dlls/ntdll/rtl.c @@ -1489,7 +1489,7 @@ out: /****************************************************************************** * RtlDecompressFragment [NTDLL.@] */ -NTSTATUS RtlDecompressFragment(USHORT format, PUCHAR uncompressed, ULONG uncompressed_size, +NTSTATUS WINAPI RtlDecompressFragment(USHORT format, PUCHAR uncompressed, ULONG uncompressed_size, PUCHAR compressed, ULONG compressed_size, ULONG offset, PULONG final_size, PVOID workspace) {