Commit a0a4c2fb authored by Brendan Shanks's avatar Brendan Shanks Committed by Alexandre Julliard

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

parent 93a2fb60
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment