Eric Pouech : vssapi: Enable compilation with long types.

Alexandre Julliard julliard at winehq.org
Mon Feb 21 16:15:13 CST 2022


Module: wine
Branch: master
Commit: 2c656759555a94158c3210bf0b7f7acbab64eb5f
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=2c656759555a94158c3210bf0b7f7acbab64eb5f

Author: Eric Pouech <eric.pouech at gmail.com>
Date:   Mon Feb 21 07:59:07 2022 +0100

vssapi: Enable compilation with long types.

Signed-off-by: Eric Pouech <eric.pouech at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/vssapi/Makefile.in | 1 -
 dlls/vssapi/main.c      | 4 ++--
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/dlls/vssapi/Makefile.in b/dlls/vssapi/Makefile.in
index 0df40af2830..867a56287a5 100644
--- a/dlls/vssapi/Makefile.in
+++ b/dlls/vssapi/Makefile.in
@@ -1,4 +1,3 @@
-EXTRADEFS = -DWINE_NO_LONG_TYPES
 MODULE    = vssapi.dll
 
 C_SRCS = \
diff --git a/dlls/vssapi/main.c b/dlls/vssapi/main.c
index ce06ca23929..c6abead7850 100644
--- a/dlls/vssapi/main.c
+++ b/dlls/vssapi/main.c
@@ -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;
 }
 




More information about the wine-cvs mailing list