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:
parent
d01d3b749d
commit
8a1933bbe4
|
@ -1278,7 +1278,7 @@ BOOL WINAPI BaseFlushAppcompatCache(void)
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* GetCommandLineA (kernelbase.@)
|
* GetCommandLineA (kernelbase.@)
|
||||||
*/
|
*/
|
||||||
LPSTR WINAPI DECLSPEC_HOTPATCH GetCommandLineA(void)
|
LPSTR WINAPI GetCommandLineA(void)
|
||||||
{
|
{
|
||||||
return command_lineA;
|
return command_lineA;
|
||||||
}
|
}
|
||||||
|
@ -1287,7 +1287,7 @@ LPSTR WINAPI DECLSPEC_HOTPATCH GetCommandLineA(void)
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* GetCommandLineW (kernelbase.@)
|
* GetCommandLineW (kernelbase.@)
|
||||||
*/
|
*/
|
||||||
LPWSTR WINAPI DECLSPEC_HOTPATCH GetCommandLineW(void)
|
LPWSTR WINAPI GetCommandLineW(void)
|
||||||
{
|
{
|
||||||
return command_lineW;
|
return command_lineW;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue