mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 12:23:14 +00:00
Whitespace fix.
svn path=/trunk/; revision=65841
This commit is contained in:
parent
c84c201e3a
commit
5f8ea303ee
1 changed files with 64 additions and 64 deletions
|
@ -44,7 +44,7 @@ typedef enum _QS_ROS_TYPES
|
|||
QSRosSendMessage,
|
||||
QSRosHotKey,
|
||||
QSRosEvent,
|
||||
}QS_ROS_TYPES,*PQS_ROS_TYPES;
|
||||
} QS_ROS_TYPES, *PQS_ROS_TYPES;
|
||||
|
||||
extern BOOL ClientPfnInit;
|
||||
extern HINSTANCE hModClient;
|
||||
|
@ -161,13 +161,13 @@ typedef struct _THREADINFO
|
|||
VOID UserDeleteW32Thread(PTHREADINFO);
|
||||
|
||||
#define IntDereferenceThreadInfo(pti) \
|
||||
do { \
|
||||
if(InterlockedDecrement(&(pti)->RefCount) == 0) \
|
||||
do { \
|
||||
if (InterlockedDecrement(&(pti)->RefCount) == 0) \
|
||||
{ \
|
||||
ASSERT(((pti)->TIF_flags & (TIF_INCLEANUP|TIF_DONTATTACHQUEUE)) == (TIF_INCLEANUP|TIF_DONTATTACHQUEUE)); \
|
||||
UserDeleteW32Thread(pti); \
|
||||
} \
|
||||
} while(0)
|
||||
} while(0)
|
||||
|
||||
#define IntReferenceProcessInfo(ppi) \
|
||||
InterlockedIncrement((volatile LONG*)(&(ppi)->RefCount))
|
||||
|
@ -175,18 +175,18 @@ VOID UserDeleteW32Thread(PTHREADINFO);
|
|||
VOID UserDeleteW32Process(PPROCESSINFO);
|
||||
|
||||
#define IntDereferenceProcessInfo(ppi) \
|
||||
do { \
|
||||
if(InterlockedDecrement((volatile LONG*)(&(ppi)->RefCount)) == 0) \
|
||||
do { \
|
||||
if (InterlockedDecrement((volatile LONG*)(&(ppi)->RefCount)) == 0) \
|
||||
{ \
|
||||
ASSERT(((ppi)->W32PF_flags & W32PF_TERMINATED) != 0); \
|
||||
UserDeleteW32Process(ppi); \
|
||||
} \
|
||||
} while(0)
|
||||
} while(0)
|
||||
|
||||
|
||||
typedef struct _W32HEAP_USER_MAPPING
|
||||
{
|
||||
struct _W32HEAP_USER_MAPPING *Next;
|
||||
struct _W32HEAP_USER_MAPPING* Next;
|
||||
PVOID KernelMapping;
|
||||
PVOID UserMapping;
|
||||
ULONG_PTR Limit;
|
||||
|
@ -217,7 +217,7 @@ typedef struct _W32PROCESS
|
|||
ULONG W32PF_flags;
|
||||
PKEVENT InputIdleEvent;
|
||||
DWORD StartCursorHideTime;
|
||||
struct _W32PROCESS * NextStart;
|
||||
struct _W32PROCESS* NextStart;
|
||||
PVOID pDCAttrList;
|
||||
PVOID pBrushAttrList;
|
||||
DWORD W32Pid;
|
||||
|
@ -244,7 +244,7 @@ typedef struct _PROCESSINFO
|
|||
HDESK hdeskStartup;
|
||||
DWORD dwhmodLibLoadedMask;
|
||||
HANDLE ahmodLibLoaded[CLIBS];
|
||||
struct _WINSTATION_OBJECT *prpwinsta;
|
||||
struct _WINSTATION_OBJECT* prpwinsta;
|
||||
HWINSTA hwinsta;
|
||||
ACCESS_MASK amwinsta;
|
||||
DWORD dwHotkey;
|
||||
|
@ -255,6 +255,7 @@ typedef struct _PROCESSINFO
|
|||
PVOID pW32Job;
|
||||
DWORD dwLayout;
|
||||
DWORD dwRegisteredClasses;
|
||||
|
||||
/* ReactOS */
|
||||
FAST_MUTEX PrivateFontListLock;
|
||||
LIST_ENTRY PrivateFontListHead;
|
||||
|
@ -262,9 +263,9 @@ typedef struct _PROCESSINFO
|
|||
LIST_ENTRY DriverObjListHead;
|
||||
struct tagKL* KeyboardLayout; // THREADINFO only
|
||||
W32HEAP_USER_MAPPING HeapMappings;
|
||||
struct _GDI_POOL *pPoolDcAttr;
|
||||
struct _GDI_POOL *pPoolBrushAttr;
|
||||
struct _GDI_POOL *pPoolRgnAttr;
|
||||
struct _GDI_POOL* pPoolDcAttr;
|
||||
struct _GDI_POOL* pPoolBrushAttr;
|
||||
struct _GDI_POOL* pPoolRgnAttr;
|
||||
|
||||
#if DBG
|
||||
BYTE DbgChannelLevel[DbgChCount];
|
||||
|
@ -276,4 +277,3 @@ typedef struct _PROCESSINFO
|
|||
void NTAPI UserDbgPreServiceHook(ULONG ulSyscallId, PULONG_PTR pulArguments);
|
||||
ULONG_PTR NTAPI UserDbgPostServiceHook(ULONG ulSyscallId, ULONG_PTR ulResult);
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue