2019-01-25 05:56:23 +01:00
|
|
|
/*
|
|
|
|
* ntoskrnl.exe implementation
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Alexandre Julliard
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WINE_NTOSKRNL_PRIVATE_H
|
|
|
|
#define __WINE_NTOSKRNL_PRIVATE_H
|
|
|
|
|
2019-05-14 12:30:46 +02:00
|
|
|
#include "wine/asm.h"
|
|
|
|
|
2019-04-08 14:03:50 +02:00
|
|
|
struct _OBJECT_TYPE
|
|
|
|
{
|
2019-02-26 13:39:43 +01:00
|
|
|
const WCHAR *name; /* object type name used for type validation */
|
|
|
|
void *(*constructor)(HANDLE); /* used for creating an object from server handle */
|
|
|
|
void (*release)(void*); /* called when the last reference is released */
|
2019-02-26 13:38:58 +01:00
|
|
|
};
|
|
|
|
|
2019-04-29 16:01:34 +02:00
|
|
|
struct _EPROCESS
|
|
|
|
{
|
2019-04-19 18:24:39 +02:00
|
|
|
DISPATCHER_HEADER header;
|
2019-04-29 16:01:34 +02:00
|
|
|
PROCESS_BASIC_INFORMATION info;
|
2019-04-19 18:24:39 +02:00
|
|
|
};
|
|
|
|
|
2019-04-08 14:03:50 +02:00
|
|
|
struct _KTHREAD
|
|
|
|
{
|
|
|
|
DISPATCHER_HEADER header;
|
2019-04-29 16:00:32 +02:00
|
|
|
PEPROCESS process;
|
2019-04-08 14:04:29 +02:00
|
|
|
CLIENT_ID id;
|
2019-04-08 14:03:50 +02:00
|
|
|
};
|
|
|
|
|
2019-04-29 16:01:20 +02:00
|
|
|
struct _ETHREAD
|
|
|
|
{
|
|
|
|
struct _KTHREAD kthread;
|
|
|
|
};
|
|
|
|
|
2019-03-25 14:38:44 +01:00
|
|
|
void *alloc_kernel_object( POBJECT_TYPE type, HANDLE handle, SIZE_T size, LONG ref ) DECLSPEC_HIDDEN;
|
2019-03-27 17:43:39 +01:00
|
|
|
NTSTATUS kernel_object_from_handle( HANDLE handle, POBJECT_TYPE type, void **ret ) DECLSPEC_HIDDEN;
|
2019-03-25 14:38:44 +01:00
|
|
|
|
2019-03-11 14:59:57 +01:00
|
|
|
extern POBJECT_TYPE ExEventObjectType;
|
|
|
|
extern POBJECT_TYPE ExSemaphoreObjectType;
|
|
|
|
extern POBJECT_TYPE IoDeviceObjectType;
|
|
|
|
extern POBJECT_TYPE IoDriverObjectType;
|
|
|
|
extern POBJECT_TYPE IoFileObjectType;
|
|
|
|
extern POBJECT_TYPE PsProcessType;
|
|
|
|
extern POBJECT_TYPE PsThreadType;
|
|
|
|
extern POBJECT_TYPE SeTokenObjectType;
|
|
|
|
|
2019-05-27 13:39:25 +02:00
|
|
|
#define DECLARE_CRITICAL_SECTION(cs) \
|
|
|
|
static CRITICAL_SECTION cs; \
|
|
|
|
static CRITICAL_SECTION_DEBUG cs##_debug = \
|
|
|
|
{ 0, 0, &cs, { &cs##_debug.ProcessLocksList, &cs##_debug.ProcessLocksList }, \
|
|
|
|
0, 0, { (DWORD_PTR)(__FILE__ ": " # cs) }}; \
|
|
|
|
static CRITICAL_SECTION cs = { &cs##_debug, -1, 0, 0, 0, 0 };
|
|
|
|
|
2019-01-25 05:56:23 +01:00
|
|
|
#endif
|