[PATCH 2/2] kernelbase: Remove DECLSPEC_HOTPATCH for GetCommandLine[AW].

Myah Caron qsniyg at protonmail.com
Fri Oct 9 07:07:18 CDT 2020


Wine-bug: https://bugs.winehq.org/show_bug.cgi?id=48861
Signed-off-by: Myah Caron <qsniyg at protonmail.com>
---
 dlls/kernelbase/process.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/kernelbase/process.c b/dlls/kernelbase/process.c
index d5fedb4495c..0f707f82d11 100644
--- a/dlls/kernelbase/process.c
+++ b/dlls/kernelbase/process.c
@@ -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;
 }
--
2.28.0





More information about the wine-devel mailing list