Commit 2c656759 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

vssapi: Enable compilation with long types.

parent e0a0b6ab
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = vssapi.dll
C_SRCS = \
......
......@@ -61,7 +61,7 @@ HRESULT __thiscall VSSAPI_CVssWriter_Initialize( struct CVssWriter *writer, VSS_
VSS_APPLICATION_LEVEL level, DWORD timeout, VSS_ALTERNATE_WRITER_STATE alt_writer_state,
BOOL throttle, LPCWSTR instance )
{
FIXME( "%p, %s, %s, %u, %u, %u, %u, %u, %d, %s\n", writer, debugstr_guid(&id),
FIXME( "%p, %s, %s, %u, %u, %u, %lu, %u, %d, %s\n", writer, debugstr_guid(&id),
debugstr_w(name), usage_type, source_type, level, timeout, alt_writer_state,
throttle, debugstr_w(instance) );
return S_OK;
......@@ -73,7 +73,7 @@ HRESULT __thiscall VSSAPI_CVssWriter_Initialize( struct CVssWriter *writer, VSS_
DEFINE_THISCALL_WRAPPER( VSSAPI_CVssWriter_Subscribe, 8 )
HRESULT __thiscall VSSAPI_CVssWriter_Subscribe( struct CVssWriter *writer, DWORD flags )
{
FIXME( "%p, %x\n", writer, flags );
FIXME( "%p, %lx\n", writer, flags );
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