[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:
George Bișoc 2021-06-06 19:39:32 +02:00
parent c35a84985a
commit bbdb4d6340
No known key found for this signature in database
GPG key ID: 688C4FBE25D7DEF6

View file

@ -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 }