Commit 7c8d4158 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

amsi: Enable compilation with long types.

parent 463822e6
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = amsi.dll
C_SRCS = \
......
......@@ -46,7 +46,7 @@ void WINAPI AmsiCloseSession( HAMSICONTEXT context, HAMSISESSION session )
HRESULT WINAPI AmsiScanBuffer( HAMSICONTEXT context, void *buffer, ULONG length, const WCHAR *name,
HAMSISESSION session, AMSI_RESULT *result )
{
FIXME( "%p, %p, %u, %s, %p, %p\n", context, buffer, length, debugstr_w(name), session, result );
FIXME( "%p, %p, %lu, %s, %p, %p\n", context, buffer, length, debugstr_w(name), session, result );
*result = AMSI_RESULT_NOT_DETECTED;
return S_OK;
}
......
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