mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
move W32PROCESS/W32THREAD into win32\include bcause they are win32k private structs
svn path=/trunk/; revision=17262
This commit is contained in:
parent
daa17455d6
commit
16b5d11ec3
5 changed files with 11 additions and 6 deletions
|
@ -14,6 +14,12 @@
|
||||||
|
|
||||||
/* PROTOTYPES ****************************************************************/
|
/* PROTOTYPES ****************************************************************/
|
||||||
|
|
||||||
|
struct _W32THREAD* STDCALL
|
||||||
|
PsGetWin32Thread(VOID);
|
||||||
|
|
||||||
|
struct _W32PROCESS* STDCALL
|
||||||
|
PsGetWin32Process(VOID);
|
||||||
|
|
||||||
PVOID
|
PVOID
|
||||||
STDCALL
|
STDCALL
|
||||||
PsGetProcessWin32Process(PEPROCESS Process);
|
PsGetProcessWin32Process(PEPROCESS Process);
|
||||||
|
|
|
@ -91,6 +91,9 @@ typedef NTSTATUS
|
||||||
|
|
||||||
/* TYPES *********************************************************************/
|
/* TYPES *********************************************************************/
|
||||||
|
|
||||||
|
struct _W32THREAD;
|
||||||
|
struct _W32PROCESS;
|
||||||
|
|
||||||
struct _ETHREAD;
|
struct _ETHREAD;
|
||||||
|
|
||||||
typedef struct _DESCRIPTOR_TABLE_ENTRY
|
typedef struct _DESCRIPTOR_TABLE_ENTRY
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
typedef struct _W32THREAD
|
typedef struct _W32THREAD
|
||||||
{
|
{
|
||||||
PVOID MessageQueue;
|
struct _USER_MESSAGE_QUEUE* MessageQueue;
|
||||||
FAST_MUTEX WindowListLock;
|
FAST_MUTEX WindowListLock;
|
||||||
LIST_ENTRY WindowListHead;
|
LIST_ENTRY WindowListHead;
|
||||||
LIST_ENTRY W32CallbackListHead;
|
LIST_ENTRY W32CallbackListHead;
|
||||||
|
@ -35,9 +35,5 @@ typedef struct _W32PROCESS
|
||||||
LONG UserObjects;
|
LONG UserObjects;
|
||||||
} W32PROCESS, *PW32PROCESS;
|
} W32PROCESS, *PW32PROCESS;
|
||||||
|
|
||||||
PW32THREAD STDCALL
|
|
||||||
PsGetWin32Thread(VOID);
|
|
||||||
PW32PROCESS STDCALL
|
|
||||||
PsGetWin32Process(VOID);
|
|
||||||
|
|
||||||
#endif /* __INCLUDE_NAPI_WIN32_H */
|
#endif /* __INCLUDE_NAPI_WIN32_H */
|
|
@ -9,6 +9,7 @@
|
||||||
/* INCLUDES ******************************************************************/
|
/* INCLUDES ******************************************************************/
|
||||||
|
|
||||||
/* Internal Win32k Headers */
|
/* Internal Win32k Headers */
|
||||||
|
#include <include/win32.h>
|
||||||
#include <include/ssec.h>
|
#include <include/ssec.h>
|
||||||
#include <include/accelerator.h>
|
#include <include/accelerator.h>
|
||||||
#include <include/callback.h>
|
#include <include/callback.h>
|
||||||
|
|
|
@ -39,7 +39,6 @@ typedef struct _SECURITY_ATTRIBUTES SECURITY_ATTRIBUTES, *LPSECURITY_ATTRIBUTES;
|
||||||
|
|
||||||
/* External Win32K Header */
|
/* External Win32K Header */
|
||||||
#include <win32k/win32k.h>
|
#include <win32k/win32k.h>
|
||||||
#include <win32k/win32.h>
|
|
||||||
|
|
||||||
/* Internal Win32K Header */
|
/* Internal Win32K Header */
|
||||||
#include "include/win32k.h"
|
#include "include/win32k.h"
|
||||||
|
|
Loading…
Reference in a new issue