Commit fb983276 authored by Paul Gofman's avatar Paul Gofman Committed by Alexandre Julliard

gamingtcui: Add stub for ProcessPendingGameUI().

Based on a patch by Myah Caron. Signed-off-by: 's avatarPaul Gofman <pgofman@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 8c0ced87
@ stub ProcessPendingGameUI
@ stdcall ProcessPendingGameUI(long) gamingtcui.ProcessPendingGameUI
@ stub ShowChangeFriendRelationshipUI
@ stub ShowGameInviteUI
@ stub ShowPlayerPickerUI
......
MODULE = gamingtcui.dll
EXTRADLLFLAGS = -mno-cygwin
C_SRCS = \
gamingtcui_main.c
......@@ -2,7 +2,7 @@
@ stub CheckGamingPrivilegeSilentlyForUser
@ stub CheckGamingPrivilegeWithUI
@ stub CheckGamingPrivilegeWithUIForUser
@ stub ProcessPendingGameUI
@ stdcall ProcessPendingGameUI(long)
@ stub ShowChangeFriendRelationshipUI
@ stub ShowChangeFriendRelationshipUIForUser
@ stub ShowCustomizeUserProfileUI
......
/*
* Copyright 2021 Paul Gofman for CodeWeavers
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*
*/
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "gamingtcui.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(gamingtcui);
HRESULT WINAPI ProcessPendingGameUI(BOOL wait_for_completion)
{
FIXME("wait_for_completion %#x stub.\n", wait_for_completion);
return S_OK;
}
......@@ -301,6 +301,7 @@ SOURCES = \
fontsub.h \
fusion.idl \
gameux.idl \
gamingtcui.h \
gdiplus.h \
gdipluscolor.h \
gdipluscolormatrix.h \
......
/*
* Copyright 2021 Paul Gofman for CodeWeavers
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*
*/
#ifndef __WINE_GAMINGTCUI_H
#define __WINE_GAMINGTCUI_H
#include <windows.h>
#ifdef __cplusplus
extern "C"
{
#endif
HRESULT WINAPI ProcessPendingGameUI(BOOL wait_for_completion);
#ifdef __cplusplus
}
#endif
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment