Jacek Caban : advapi32: Added DECLSPEC_HOTPATCHABLE to CreateProcessAsUser [AW] functions.

Alexandre Julliard julliard at wine.codeweavers.com
Fri Nov 13 08:34:46 CST 2015


Module: wine
Branch: master
Commit: fdc6f610c38f2ce2c5abfd408680b383e8a27de2
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=fdc6f610c38f2ce2c5abfd408680b383e8a27de2

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Thu Nov 12 16:01:24 2015 +0100

advapi32: Added DECLSPEC_HOTPATCHABLE to CreateProcessAsUser[AW] functions.

Signed-off-by: Jacek Caban <jacek at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/advapi32/security.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/dlls/advapi32/security.c b/dlls/advapi32/security.c
index a64ebf9..09dfdec 100644
--- a/dlls/advapi32/security.c
+++ b/dlls/advapi32/security.c
@@ -19,6 +19,8 @@
  *
  */
 
+#include "config.h"
+
 #include <stdarg.h>
 #include <string.h>
 
@@ -5312,7 +5314,7 @@ BOOL WINAPI DestroyPrivateObjectSecurity( PSECURITY_DESCRIPTOR* ObjectDescriptor
     return TRUE;
 }
 
-BOOL WINAPI CreateProcessAsUserA(
+BOOL WINAPI DECLSPEC_HOTPATCH CreateProcessAsUserA(
         HANDLE hToken,
         LPCSTR lpApplicationName,
         LPSTR lpCommandLine,
@@ -5367,7 +5369,7 @@ BOOL WINAPI CreateProcessAsUserA(
     return ret;
 }
 
-BOOL WINAPI CreateProcessAsUserW(
+BOOL WINAPI DECLSPEC_HOTPATCH CreateProcessAsUserW(
         HANDLE hToken,
         LPCWSTR lpApplicationName,
         LPWSTR lpCommandLine,




More information about the wine-cvs mailing list