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@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