kernelbase: Remove DECLSPEC_HOTPATCH for GetCommandLine[AW].

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=48861
Signed-off-by: Myah Caron <qsniyg@protonmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Myah Caron 2020-10-13 19:43:31 +00:00 committed by Alexandre Julliard
parent d01d3b749d
commit 8a1933bbe4
1 changed files with 2 additions and 2 deletions

View File

@ -1278,7 +1278,7 @@ BOOL WINAPI BaseFlushAppcompatCache(void)
/***********************************************************************
* GetCommandLineA (kernelbase.@)
*/
LPSTR WINAPI DECLSPEC_HOTPATCH GetCommandLineA(void)
LPSTR WINAPI GetCommandLineA(void)
{
return command_lineA;
}
@ -1287,7 +1287,7 @@ LPSTR WINAPI DECLSPEC_HOTPATCH GetCommandLineA(void)
/***********************************************************************
* GetCommandLineW (kernelbase.@)
*/
LPWSTR WINAPI DECLSPEC_HOTPATCH GetCommandLineW(void)
LPWSTR WINAPI GetCommandLineW(void)
{
return command_lineW;
}