Windows System Software -- Consulting, Training, Development -- Unique Expertise, Guaranteed Results
The free OSR Learning Library has more than 50 articles on a wide variety of topics about writing and debugging device drivers and Minifilters. From introductory level to advanced. All the articles have been recently reviewed and updated, and are written using the clear and definitive style you've come to expect from OSR over the years.
Check out The OSR Learning Library at: https://www.osr.com/osr-learning-library/
Hi,
I am facing following errors in all the source files when trying to compile SensorsComboDriver for C++20.
1>C:\Windows-driver-samples\sensors\SensorsComboDriver\Clients.h(162,1): error C2440: 'initializing': cannot convert from 'const char [12]' to 'PCHAR'
1>C:\Windows-driver-samples\sensors\SensorsComboDriver\Clients.h(162,1): message : Conversion from string literal loses const qualifier (see /Zc:strictStrings)
Here is what I have tried doing:
Looking at the other OSR posts, I got to know that C++20 is supported in KMDF except STLs and exceptions.
In that case, I was wondering why I am getting the above errors.
Are there any other unsupported features of C++20 that are causing the above issues?
Thanks in advance for the help.
Chandra
Upcoming OSR Seminars | ||
---|---|---|
OSR has suspended in-person seminars due to the Covid-19 outbreak. But, don't miss your training! Attend via the internet instead! | ||
Kernel Debugging | 13-17 May 2024 | Live, Online |
Developing Minifilters | 1-5 Apr 2024 | Live, Online |
Internals & Software Drivers | 11-15 Mar 2024 | Live, Online |
Writing WDF Drivers | 26 Feb - 1 Mar 2024 | Live, Online |
Comments
PCHAR
is notconst
. Not sure whetherPCCHAR
is a thing, but theconst
-> non-const
conversion is why it's failing.Agreed. But the issue happens only with C++20.
The issue is with WDF_DECLARE_CONTEXT_TYPE_WITH_NAME which is a standard WDF macro.
That's why I am concerned if C++20 is supported with WDF.
Found out the solution for the problem.
Right click on the project -> Properties -> C/C++ -> Command Line -> Add "/Zc:strictStrings- " to the Additional Options.
That's a great hint. I appreciate the followup.
Tim Roberts, [email protected]
Providenza & Boekelheide, Inc.
Hi guys
It's crucial to check whether C++20 is fully supported by WDF, particularly in light of the fact that the problem only affects the WDF macro WDF_DECLARE_CONTEXT_TYPE_WITH_NAME.