2 * Copyright 2014 Hans Leidekker for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 #include "wine/debug.h"
27 WINE_DEFAULT_DEBUG_CHANNEL( vssapi
);
29 #ifdef __i386__ /* thiscall functions are i386-specific */
31 #define THISCALL(func) __thiscall_ ## func
32 #define THISCALL_NAME(func) __ASM_NAME("__thiscall_" #func)
33 #define __thiscall __stdcall
34 #define DEFINE_THISCALL_WRAPPER(func,args) \
35 extern void THISCALL(func)(void); \
36 __ASM_GLOBAL_FUNC(__thiscall_ ## func, \
40 "jmp " __ASM_NAME(#func) __ASM_STDCALL(args) )
43 #define THISCALL(func) func
44 #define THISCALL_NAME(func) __ASM_NAME(#func)
45 #define __thiscall __cdecl
46 #define DEFINE_THISCALL_WRAPPER(func,args) /* nothing */
55 /******************************************************************
56 * ??0CVssWriter@@QAE@XZ (VSSAPI.@)
58 DEFINE_THISCALL_WRAPPER( VSSAPI_CVssWriter_default_ctor
, 4 )
59 struct CVssWriter
* __thiscall
VSSAPI_CVssWriter_default_ctor( struct CVssWriter
*writer
)
61 FIXME( "%p\n", writer
);
62 writer
->vtable
= NULL
;
66 /******************************************************************
67 * ??1CVssWriter@@UAE@XZ (VSSAPI.@)
69 DEFINE_THISCALL_WRAPPER( VSSAPI_CVssWriter_dtor
, 4 )
70 void __thiscall
VSSAPI_CVssWriter_dtor( struct CVssWriter
*writer
)
72 FIXME( "%p\n", writer
);
75 /******************************************************************
76 * ?Initialize@CVssWriter@@QAGJU_GUID@@PBGW4VSS_USAGE_TYPE@@W4VSS_SOURCE_TYPE@@W4_VSS_APPLICATION_LEVEL@@KW4VSS_ALTERNATE_WRITER_STATE@@_N@Z
78 DEFINE_THISCALL_WRAPPER( VSSAPI_CVssWriter_Initialize
, 52 )
79 HRESULT __thiscall
VSSAPI_CVssWriter_Initialize( struct CVssWriter
*writer
, VSS_ID id
,
80 LPCWSTR name
, VSS_USAGE_TYPE usage_type
, VSS_SOURCE_TYPE source_type
,
81 VSS_APPLICATION_LEVEL level
, DWORD timeout
, VSS_ALTERNATE_WRITER_STATE alt_writer_state
,
82 BOOL throttle
, LPCWSTR instance
)
84 FIXME( "%p, %s, %s, %u, %u, %u, %u, %u, %d, %s\n", writer
, debugstr_guid(&id
),
85 debugstr_w(name
), usage_type
, source_type
, level
, timeout
, alt_writer_state
,
86 throttle
, debugstr_w(instance
) );
90 /******************************************************************
91 * ?Subscribe@CVssWriter@@QAGJK@Z
93 DEFINE_THISCALL_WRAPPER( VSSAPI_CVssWriter_Subscribe
, 8 )
94 HRESULT __thiscall
VSSAPI_CVssWriter_Subscribe( struct CVssWriter
*writer
, DWORD flags
)
96 FIXME( "%p, %x\n", writer
, flags
);
100 /******************************************************************
101 * ?Unsubscribe@CVssWriter@@QAGJXZ
103 DEFINE_THISCALL_WRAPPER( VSSAPI_CVssWriter_Unsubscribe
, 4 )
104 HRESULT __thiscall
VSSAPI_CVssWriter_Unsubscribe( struct CVssWriter
*writer
)
106 FIXME( "%p\n", writer
);