1
0
mirror of https://github.com/bitdefender/bddisasm.git synced 2024-11-22 23:48:07 +00:00
bddisasm/inc/disasmtypes.h

25 lines
380 B
C
Raw Normal View History

2020-07-21 08:19:18 +00:00
/*
* Copyright (c) 2020 Bitdefender
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef DISASM_TYPES_H
#define DISASM_TYPES_H
2020-07-21 08:19:18 +00:00
#if defined(KERNEL_MODE) && defined(_MSC_VER)
# include <ntddk.h>
# include <Ntstrsafe.h>
#elif defined(__KERNEL__) && defined(__GNUC__)
# include <linux/types.h>
2020-07-21 08:19:18 +00:00
#else
# include <stddef.h>
# include <stdint.h>
# include <stdbool.h>
#endif
#endif