advapi32: Added DECLSPEC_HOTPATCHABLE to CreateProcessAsUser[AW] functions.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jacek Caban 2015-11-12 16:01:24 +01:00 committed by Alexandre Julliard
parent 80c53b33fd
commit fdc6f610c3
1 changed files with 4 additions and 2 deletions

View File

@ -19,6 +19,8 @@
* *
*/ */
#include "config.h"
#include <stdarg.h> #include <stdarg.h>
#include <string.h> #include <string.h>
@ -5312,7 +5314,7 @@ BOOL WINAPI DestroyPrivateObjectSecurity( PSECURITY_DESCRIPTOR* ObjectDescriptor
return TRUE; return TRUE;
} }
BOOL WINAPI CreateProcessAsUserA( BOOL WINAPI DECLSPEC_HOTPATCH CreateProcessAsUserA(
HANDLE hToken, HANDLE hToken,
LPCSTR lpApplicationName, LPCSTR lpApplicationName,
LPSTR lpCommandLine, LPSTR lpCommandLine,
@ -5367,7 +5369,7 @@ BOOL WINAPI CreateProcessAsUserA(
return ret; return ret;
} }
BOOL WINAPI CreateProcessAsUserW( BOOL WINAPI DECLSPEC_HOTPATCH CreateProcessAsUserW(
HANDLE hToken, HANDLE hToken,
LPCWSTR lpApplicationName, LPCWSTR lpApplicationName,
LPWSTR lpCommandLine, LPWSTR lpCommandLine,