fltmgr.sys: add FltInitializePushLock stub (try 3)

Dmitry Timoshkov dmitry at baikal.ru
Sat Oct 17 09:14:14 CDT 2015


Austin English <austinenglish at 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.

-- 
Dmitry.



More information about the wine-devel mailing list