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 Guys,
I am hitting one problem. I need to use the random number generator function RtlRandomEx so I include the file "ntifs.h". I start getting a lot of errors with this. In my global include file, this is the sequence of including the header files:-
#include <ntddk.h> #pragma warning(disable:4201) // nameless struct/union warning #include <stdarg.h> #include <stddef.h> #include <wdf.h> #pragma warning(default:4201) #include <initguid.h> #include <wdmguid.h>
To avoid the errors I looked up the declaration for the function and stick it in one of my header files. This works, but I know I am not doing something right.
How can I get the declaration of RtlRandomEx in my driver without doing something fishy?
Thanks
-AJ
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! | ||
Internals & Software Drivers | 7 February 2022 | Live, Online |
Kernel Debugging | 21 March 2022 | Live, Online |
Developing Minifilters | 23 May 2022 | Live, Online |
Writing WDF Drivers | 12 September 2022 | Live, Online |