msvcrt: Use type ranges definition from public header.
[wine.git] / dlls / ntoskrnl.exe / ntoskrnl_private.h
bloba1e1b892e8cb35849473592016a0584a48cedc52
1 /*
2 * ntoskrnl.exe implementation
4 * Copyright (C) 2007 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #ifndef __WINE_NTOSKRNL_PRIVATE_H
22 #define __WINE_NTOSKRNL_PRIVATE_H
24 #include "wine/asm.h"
26 static inline LPCSTR debugstr_us( const UNICODE_STRING *us )
28 if (!us) return "<null>";
29 return debugstr_wn( us->Buffer, us->Length / sizeof(WCHAR) );
32 struct _OBJECT_TYPE
34 const WCHAR *name; /* object type name used for type validation */
35 void *(*constructor)(HANDLE); /* used for creating an object from server handle */
36 void (*release)(void*); /* called when the last reference is released */
39 struct _EPROCESS
41 DISPATCHER_HEADER header;
42 PROCESS_BASIC_INFORMATION info;
43 BOOL wow64;
46 struct _KTHREAD
48 DISPATCHER_HEADER header;
49 PEPROCESS process;
50 CLIENT_ID id;
51 unsigned int critical_region;
52 KAFFINITY user_affinity;
55 struct _ETHREAD
57 struct _KTHREAD kthread;
60 void *alloc_kernel_object( POBJECT_TYPE type, HANDLE handle, SIZE_T size, LONG ref ) DECLSPEC_HIDDEN;
61 NTSTATUS kernel_object_from_handle( HANDLE handle, POBJECT_TYPE type, void **ret ) DECLSPEC_HIDDEN;
63 extern POBJECT_TYPE ExEventObjectType;
64 extern POBJECT_TYPE ExSemaphoreObjectType;
65 extern POBJECT_TYPE IoDeviceObjectType;
66 extern POBJECT_TYPE IoDriverObjectType;
67 extern POBJECT_TYPE IoFileObjectType;
68 extern POBJECT_TYPE PsProcessType;
69 extern POBJECT_TYPE PsThreadType;
70 extern POBJECT_TYPE SeTokenObjectType;
72 #define DECLARE_CRITICAL_SECTION(cs) \
73 static CRITICAL_SECTION cs; \
74 static CRITICAL_SECTION_DEBUG cs##_debug = \
75 { 0, 0, &cs, { &cs##_debug.ProcessLocksList, &cs##_debug.ProcessLocksList }, \
76 0, 0, { (DWORD_PTR)(__FILE__ ": " # cs) }}; \
77 static CRITICAL_SECTION cs = { &cs##_debug, -1, 0, 0, 0, 0 };
79 void ObReferenceObject( void *obj ) DECLSPEC_HIDDEN;
81 void pnp_manager_enumerate_root_devices( const WCHAR *driver_name ) DECLSPEC_HIDDEN;
82 void pnp_manager_start(void) DECLSPEC_HIDDEN;
83 void pnp_manager_stop(void) DECLSPEC_HIDDEN;
85 static const WCHAR servicesW[] = {'\\','R','e','g','i','s','t','r','y',
86 '\\','M','a','c','h','i','n','e',
87 '\\','S','y','s','t','e','m',
88 '\\','C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t',
89 '\\','S','e','r','v','i','c','e','s',
90 '\\',0};
92 struct wine_device
94 DEVICE_OBJECT device_obj;
95 DEVICE_RELATIONS *children;
97 #endif