All, I was using the RtlZeroMemory to empty the memory in my project. But when I build the project I got a warning says warning C4090: 'function' : different 'const' qualifiers
for below code.
RtlZeroMemory(&copiedRelatedObj, FltObjects->Size);
After researching, I found it doesn't matter with this warning, But It stop the build process . How I ignore or disable this warning ? thanks.