include: Add __WINE_(DEALLOC|MALLOC) attributes to wine_get_(dos|unix)_file_name.

This commit is contained in:
Brendan Shanks 2022-11-28 09:00:10 -08:00 committed by Alexandre Julliard
parent 93a2fb604f
commit a0a4c2fb3f

View file

@ -2963,8 +2963,8 @@ WINBASEAPI UINT WINAPI _lwrite(HFILE,LPCSTR,UINT);
/* Wine internal functions */
extern char * CDECL wine_get_unix_file_name( LPCWSTR dos );
extern WCHAR * CDECL wine_get_dos_file_name( LPCSTR str );
extern char * CDECL wine_get_unix_file_name( const WCHAR * ) __WINE_DEALLOC(HeapFree,3) __WINE_MALLOC;
extern WCHAR * CDECL wine_get_dos_file_name( const char * ) __WINE_DEALLOC(HeapFree,3) __WINE_MALLOC;
#ifdef WINE_UNIX_LIB