kernel32: Make WritePrivateProfileStringA hotpatchable.

Signed-off-by: Michael Müller <michael@fds-team.de>
Signed-off-by: Sebastian Lackner <sebastian@fds-team.de>
oldstable
Michael Müller 2015-10-05 00:25:03 +02:00 committed by Alexandre Julliard
parent 4e941a9289
commit 132b5f86ce
1 changed files with 2 additions and 2 deletions

View File

@ -1402,8 +1402,8 @@ BOOL WINAPI WritePrivateProfileStringW( LPCWSTR section, LPCWSTR entry,
/***********************************************************************
* WritePrivateProfileStringA (KERNEL32.@)
*/
BOOL WINAPI WritePrivateProfileStringA( LPCSTR section, LPCSTR entry,
LPCSTR string, LPCSTR filename )
BOOL WINAPI DECLSPEC_HOTPATCH WritePrivateProfileStringA( LPCSTR section, LPCSTR entry,
LPCSTR string, LPCSTR filename )
{
UNICODE_STRING sectionW, entryW, stringW, filenameW;
BOOL ret;