mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 12:39:35 +00:00
[NTOSKRNL] Use CHAR for non existent classes
An alignment of 1 means no alignment required and the class doesn't exist. 0 shouldn't be used for alignment requirement in IQS_NONE!
This commit is contained in:
parent
c35a84985a
commit
bbdb4d6340
1 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
|||
* LICENSE: GPL-2.0-or-later (https://spdx.org/licenses/GPL-2.0-or-later)
|
||||
* PURPOSE: Internal header for information classes info interface
|
||||
* COPYRIGHT: Copyright ???
|
||||
* Copyright 2020 George Bișoc <george.bisoc@reactos.org>
|
||||
* Copyright 2020-2021 George Bișoc <george.bisoc@reactos.org>
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
@ -38,4 +38,4 @@ typedef struct _INFORMATION_CLASS_INFO
|
|||
{ sizeof(TypeQuery), sizeof(AlignmentQuery), sizeof(TypeSet), sizeof(AlignmentSet), Flags }
|
||||
|
||||
#define IQS_NONE \
|
||||
{ 0, 0, 0, 0, ICIF_NONE }
|
||||
{ 0, sizeof(CHAR), 0, sizeof(CHAR), ICIF_NONE }
|
||||
|
|
Loading…
Reference in a new issue