Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
08ebfed5
Commit
08ebfed5
authored
Jan 27, 2022
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gamingtcui: Fix printf format warnings on 64-bit.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
0e50a00e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
gamingtcui_main.c
dlls/gamingtcui/gamingtcui_main.c
+4
-4
No files found.
dlls/gamingtcui/gamingtcui_main.c
View file @
08ebfed5
...
...
@@ -38,10 +38,10 @@ HRESULT WINAPI ShowPlayerPickerUI(HSTRING prompt_display_text, const HSTRING *xu
const
HSTRING
*
preselected_xuids
,
size_t
preselected_xuid_count
,
size_t
min_selection_count
,
size_t
max_selection_count
,
PlayerPickerUICompletionRoutine
completion_routine
,
void
*
context
)
{
FIXME
(
"prompt_display_text %p, xuids %p, xuid_count %
lu, preselected_xuids %p, preselected_xuid_count %l
u,"
" min_selection_count %
lu, max_selection_count %l
u, completion_routine %p, context %p semi-stub.
\n
"
,
prompt_display_text
,
xuids
,
(
SIZE_T
)
xuid_count
,
preselected_xuids
,
(
SIZE_T
)
preselected_xuid_count
,
(
SIZE_T
)
min_selection_count
,
(
SIZE_T
)
max_selection_count
,
completion_routine
,
context
);
FIXME
(
"prompt_display_text %p, xuids %p, xuid_count %
Iu, preselected_xuids %p, preselected_xuid_count %I
u,"
" min_selection_count %
Iu, max_selection_count %I
u, completion_routine %p, context %p semi-stub.
\n
"
,
prompt_display_text
,
xuids
,
xuid_count
,
preselected_xuids
,
preselected_xuid_count
,
min_selection_count
,
max_selection_count
,
completion_routine
,
context
);
if
(
completion_routine
)
completion_routine
(
S_OK
,
context
,
preselected_xuids
,
preselected_xuid_count
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment