https://git.reactos.org/?p=reactos.git;a=commitdiff;h=9924da34ccda309d85829d...
commit 9924da34ccda309d85829d984251e9d61906f2cf Author: Giannis Adamopoulos gadamopoulos@reactos.org AuthorDate: Thu Dec 13 11:21:00 2018 +0200 Commit: Giannis Adamopoulos gadamopoulos@reactos.org CommitDate: Wed Dec 19 16:13:18 2018 +0200
[USERSRV] Add definition for the USER_CREATE_SYSTEM_THREAD api message --- sdk/include/reactos/subsys/win/winmsg.h | 5 +++++ 1 file changed, 5 insertions(+)
diff --git a/sdk/include/reactos/subsys/win/winmsg.h b/sdk/include/reactos/subsys/win/winmsg.h index a42d6152db..6134538cad 100644 --- a/sdk/include/reactos/subsys/win/winmsg.h +++ b/sdk/include/reactos/subsys/win/winmsg.h @@ -82,6 +82,10 @@ typedef struct _USER_REGISTER_LOGON_PROCESS BOOL Register; } USER_REGISTER_LOGON_PROCESS, *PUSER_REGISTER_LOGON_PROCESS;
+typedef struct _USER_CREATE_SYSTEM_THREAD +{ + BOOL bRemote; +} USER_CREATE_SYSTEM_THREAD, *PUSER_CREATE_SYSTEM_THREAD;
typedef struct _USER_API_MESSAGE { @@ -99,6 +103,7 @@ typedef struct _USER_API_MESSAGE USER_GET_THREAD_CONSOLE_DESKTOP GetThreadConsoleDesktopRequest; USER_REGISTER_SERVICES_PROCESS RegisterServicesProcessRequest; USER_REGISTER_LOGON_PROCESS RegisterLogonProcessRequest; + USER_CREATE_SYSTEM_THREAD CreateSystemThreadRequest; } Data; } USER_API_MESSAGE, *PUSER_API_MESSAGE;