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-02-26 13:38:58 +01: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-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-02-27 17:14:38 +01:00
|
|
|
|
2019-01-25 05:56:23 +01:00
|
|
|
#ifdef __i386__
|
2019-02-27 17:14:38 +01:00
|
|
|
#define DEFINE_FASTCALL1_WRAPPER(func) \
|
2019-03-01 10:30:56 +01:00
|
|
|
__ASM_STDCALL_FUNC( __fastcall_ ## func, 4, \
|
2019-01-25 05:56:23 +01:00
|
|
|
"popl %eax\n\t" \
|
|
|
|
"pushl %ecx\n\t" \
|
|
|
|
"pushl %eax\n\t" \
|
2019-02-27 17:14:38 +01:00
|
|
|
"jmp " __ASM_NAME(#func) __ASM_STDCALL(4) )
|
|
|
|
#define DEFINE_FASTCALL_WRAPPER(func,args) \
|
2019-03-01 10:30:56 +01:00
|
|
|
__ASM_STDCALL_FUNC( __fastcall_ ## func, args, \
|
2019-01-25 05:56:23 +01:00
|
|
|
"popl %eax\n\t" \
|
|
|
|
"pushl %edx\n\t" \
|
|
|
|
"pushl %ecx\n\t" \
|
|
|
|
"pushl %eax\n\t" \
|
2019-02-27 17:14:38 +01:00
|
|
|
"jmp " __ASM_NAME(#func) __ASM_STDCALL(args) )
|
|
|
|
#else
|
|
|
|
#define DEFINE_FASTCALL1_WRAPPER(func) /* nothing */
|
|
|
|
#define DEFINE_FASTCALL_WRAPPER(func,args) /* nothing */
|
2019-01-25 05:56:23 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|