Skip to content

Commit d27e349

Browse files
winesynclearn-more
authored andcommitted
[WINESYNC] msi: Mark exported wine functions CDECL.
Signed-off-by: Zebediah Figura <[email protected]> Signed-off-by: Hans Leidekker <[email protected]> Signed-off-by: Alexandre Julliard <[email protected]> wine commit id d0451d57348c0a25290f9326ca150843cd7d4486 by Zebediah Figura <[email protected]>
1 parent 9648664 commit d27e349

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

base/system/msiexec/msiexec.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ static DWORD DoUnregServer(void)
393393
return ret;
394394
}
395395

396-
extern UINT __wine_msi_call_dll_function(GUID *guid);
396+
extern UINT CDECL __wine_msi_call_dll_function(GUID *guid);
397397

398398
static int DoEmbedding(LPCWSTR key)
399399
{

dll/win32/msi/custom.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ static void handle_msi_break(LPCSTR target)
485485
static WCHAR ncalrpcW[] = {'n','c','a','l','r','p','c',0};
486486
static WCHAR endpoint_lrpcW[] = {'m','s','i',0};
487487

488-
UINT __wine_msi_call_dll_function(const GUID *guid)
488+
UINT CDECL __wine_msi_call_dll_function(const GUID *guid)
489489
{
490490
MsiCustomActionEntryPoint fn;
491491
MSIHANDLE remote_package = 0;

0 commit comments

Comments
 (0)