Austin English austinenglish@gmail.com wrote:
+void WINAPI FltInitializePushLock(EX_PUSH_LOCK *lock) +{
- FIXME("(%p): stub\n", lock);
+} diff --git a/include/ddk/ntifs.h b/include/ddk/ntifs.h index a8d90a1..8d22d41 100644 --- a/include/ddk/ntifs.h +++ b/include/ddk/ntifs.h @@ -19,6 +19,9 @@ #ifndef __NTIFS_H__ #define __NTIFS_H__
+#define EX_PUSH_LOCK ULONG_PTR +#define PEX_PUSH_LOCK PULONG_PTR
I'd guess that's not what Alexandre meant with an opaque pointer (anyway 'ULONG_PTR *' and 'ULONG_PTR' are two different things, not sure what you tried to achieve with any of them), you may try with 'void *' instead.