Commit fdc6f610 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

advapi32: Added DECLSPEC_HOTPATCHABLE to CreateProcessAsUser[AW] functions.

parent 80c53b33
......@@ -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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment