mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 02:43:09 +00:00
[SDK][XDK][PSDK] Grab header changes needed for Wine-10.0 KernelBase (#8047)
* [SDK] Update ThreadInfoClass to wine-10.0 * [SDK][MODULES] Fix a test and add wine-10 entries to headers Co-authored-by: Hermès BÉLUSCA - MAÏTO <hermes.belusca-maito@reactos.org>
This commit is contained in:
parent
babe6046e5
commit
45eff312cb
11 changed files with 600 additions and 5 deletions
39
sdk/include/psdk/ntioring_x.h
Normal file
39
sdk/include/psdk/ntioring_x.h
Normal file
|
@ -0,0 +1,39 @@
|
|||
/*
|
||||
* Copyright (C) 2023 Paul Gofman for CodeWeavers
|
||||
*
|
||||
* 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 __NTIORING_X_H_
|
||||
#define __NTIORING_X_H_
|
||||
|
||||
enum IORING_VERSION
|
||||
{
|
||||
IORING_VERSION_INVALID = 0,
|
||||
IORING_VERSION_1 = 1,
|
||||
IORING_VERSION_2 = 2,
|
||||
IORING_VERSION_3 = 300,
|
||||
};
|
||||
typedef enum IORING_VERSION IORING_VERSION;
|
||||
|
||||
enum IORING_FEATURE_FLAGS
|
||||
{
|
||||
IORING_FEATURE_FLAGS_NONE = 0,
|
||||
IORING_FEATURE_UM_EMULATION = 0x00000001,
|
||||
IORING_FEATURE_SET_COMPLETION_EVENT = 0x00000002,
|
||||
};
|
||||
typedef enum IORING_FEATURE_FLAGS IORING_FEATURE_FLAGS;
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue