-
A user reported that out of the box clang cannot parse the WDK headers but with fix described in: microsoft/Windows-driver-samples#665 it is possible to make those types available for use. Specifically, modifying the #define NDIS_CONCAT(x, y) x ## y
#define NDIS_API_VERSION_AVAILABLE(major,minor) ((((NDIS_CONCAT(0x, major)) << 8) + (NDIS_CONCAT(0x,minor))) >= NDIS_MIN_API) |
Beta Was this translation helpful? Give feedback.
Answered by
psifertex
Aug 29, 2024
Replies: 1 comment 1 reply
-
Asked, and answered! |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
psifertex
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Asked, and answered!