mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
- Add RtlSetProcessCritical
- Some fixes. svn path=/trunk/; revision=18201
This commit is contained in:
parent
00703c571b
commit
66e502bd5a
5 changed files with 17 additions and 8 deletions
|
@ -172,8 +172,6 @@ typedef VOID
|
|||
|
||||
/* TYPES *********************************************************************/
|
||||
|
||||
typedef LONG KPRIORITY;
|
||||
|
||||
#ifdef NTOS_MODE_USER
|
||||
typedef CCHAR KPROCESSOR_MODE;
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#include "ldrtypes.h"
|
||||
#include "mmtypes.h"
|
||||
#include "obtypes.h"
|
||||
#include "extypes.h"
|
||||
//#include "extypes.h"
|
||||
#ifndef NTOS_MODE_USER
|
||||
#include "setypes.h"
|
||||
#endif
|
||||
|
@ -207,6 +207,11 @@ typedef NTSTATUS
|
|||
|
||||
/* TYPES *********************************************************************/
|
||||
|
||||
struct _W32THREAD;
|
||||
struct _W32PROCESS;
|
||||
|
||||
struct _ETHREAD;
|
||||
|
||||
#ifdef NTOS_MODE_USER
|
||||
typedef struct _CLIENT_ID
|
||||
{
|
||||
|
@ -215,11 +220,6 @@ typedef struct _CLIENT_ID
|
|||
} CLIENT_ID, *PCLIENT_ID;
|
||||
#endif
|
||||
|
||||
struct _W32THREAD;
|
||||
struct _W32PROCESS;
|
||||
|
||||
struct _ETHREAD;
|
||||
|
||||
typedef struct _DESCRIPTOR_TABLE_ENTRY
|
||||
{
|
||||
ULONG Selector;
|
||||
|
|
|
@ -1313,6 +1313,15 @@ VOID
|
|||
NTAPI
|
||||
RtlReleasePebLock(VOID);
|
||||
|
||||
NTSYSAPI
|
||||
VOID
|
||||
NTAPI
|
||||
RtlSetProcessIsCritical(
|
||||
IN BOOLEAN NewValue,
|
||||
OUT PBOOLEAN OldValue OPTIONAL,
|
||||
IN BOOLEAN IsWinlogon
|
||||
);
|
||||
|
||||
/*
|
||||
* Environment/Path Functions
|
||||
*/
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
#define _RTLTYPES_H
|
||||
|
||||
/* DEPENDENCIES **************************************************************/
|
||||
#include "pstypes.h"
|
||||
|
||||
/* CONSTANTS *****************************************************************/
|
||||
#define MAXIMUM_LEADBYTES 12
|
||||
|
|
|
@ -110,6 +110,7 @@ typedef ULONG CLONG;
|
|||
typedef short CSHORT;
|
||||
typedef CSHORT *PCSHORT;
|
||||
typedef LARGE_INTEGER PHYSICAL_ADDRESS, *PPHYSICAL_ADDRESS;
|
||||
typedef LONG KPRIORITY;
|
||||
typedef LONG NTSTATUS, *PNTSTATUS;
|
||||
#define STATIC static
|
||||
|
||||
|
|
Loading…
Reference in a new issue