[WINESYNC] msi: Use wide character string literals in action.c.

Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>

wine commit id 8e13b0b99c823bc22c7eef8b8dac04de283ca462 by Hans Leidekker <hans@codeweavers.com>
This commit is contained in:
winesync 2022-03-13 19:08:59 +01:00 committed by Mark Jansen
parent ce6af3b1bc
commit 7ceaee6d19
No known key found for this signature in database
GPG key ID: B39240EE84BEAE8B
2 changed files with 430 additions and 941 deletions

File diff suppressed because it is too large Load diff

View file

@ -85,6 +85,7 @@ extern const char *wine_dbgstr_rect( const RECT *rect );
extern const char *wine_dbgstr_longlong( ULONGLONG ll );
#endif
static inline const char *debugstr_a( const char *s ) { return wine_dbgstr_an( s, -1 ); }
static inline const char *wine_dbgstr_a( const char *s ) { return wine_dbgstr_an( s, -1 ); }
static inline const char *wine_dbgstr_w( const WCHAR *s ) { return wine_dbgstr_wn( s, -1 ); }
/* strcmpW is available for tests compiled under Wine, but not in standalone