[PATCH] user32: add stub for GetAutoRotationState

Alistair Leslie-Hughes leslie_alistair at hotmail.com
Thu Dec 29 20:17:34 CST 2016


Hi Fabian,

On 30/12/16 12:31, Fabian Maurer wrote:
> Fixes https://bugs.winehq.org/show_bug.cgi?id=42106
> 
> Signed-off-by: Fabian Maurer <dark.shadow4 at web.de>
> ---
>  dlls/user32/misc.c      | 14 ++++++++++++++
>  dlls/user32/user32.spec |  1 +
>  include/winuser.h       | 13 +++++++++++++
>  3 files changed, 28 insertions(+)
> 
> diff --git a/dlls/user32/misc.c b/dlls/user32/misc.c
> index fa0502e25e..15f5c877fa 100644
> --- a/dlls/user32/misc.c
> +++ b/dlls/user32/misc.c
> @@ -836,6 +836,20 @@ LONG WINAPI GetDisplayConfigBufferSizes(UINT32 flags, UINT32 *num_path_info, UIN
>      return ERROR_NOT_SUPPORTED;
>  }
>  
> +/**********************************************************************
> + * GetAutoRotationState [USER32.@]
> + */
> +BOOL WINAPI GetAutoRotationState(PAR_STATE pState)
> +{
> +    FIXME("(0x%x): stub\n", pState);
Since PAR_STATE is a pointer, %p would be more appropriate.

Best Regards
Alistair


More information about the wine-devel mailing list