[SDK:KMDF] Fix calling convention for the kernel function pointers

This commit is contained in:
Victor Perevertkin 2021-03-10 18:41:03 +03:00
parent 98203cea23
commit 6d1ca3553e
No known key found for this signature in database
GPG key ID: C750B7222E9C7830
3 changed files with 41 additions and 35 deletions

View file

@ -27,3 +27,9 @@ Revision History:
#else
#define CHECK_RETURN_IF_USER_MODE
#endif
#ifdef __REACTOS__
# ifndef STDCALL
# define STDCALL __stdcall
# endif
#endif