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
87eaf899
Commit
87eaf899
authored
May 01, 2024
by
Brendan McGrath
Committed by
Alexandre Julliard
May 01, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winegstreamer: Fix wow64 support for wg_parser_connect.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=56595
parent
0274f353
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
1 deletion
+19
-1
wg_parser.c
dlls/winegstreamer/wg_parser.c
+19
-1
No files found.
dlls/winegstreamer/wg_parser.c
View file @
87eaf899
...
...
@@ -1900,6 +1900,24 @@ C_ASSERT(ARRAYSIZE(__wine_unix_call_funcs) == unix_wg_funcs_count);
typedef
ULONG
PTR32
;
static
NTSTATUS
wow64_wg_parser_connect
(
void
*
args
)
{
struct
{
wg_parser_t
parser
;
PTR32
uri
;
UINT64
file_size
;
}
*
params32
=
args
;
struct
wg_parser_connect_params
params
=
{
.
parser
=
params32
->
parser
,
.
uri
=
ULongToPtr
(
params32
->
uri
),
.
file_size
=
params32
->
file_size
,
};
return
wg_parser_connect
(
&
params
);
}
static
NTSTATUS
wow64_wg_parser_push_data
(
void
*
args
)
{
struct
{
...
...
@@ -2184,7 +2202,7 @@ const unixlib_entry_t __wine_unix_call_wow64_funcs[] =
X
(
wg_parser_create
),
X
(
wg_parser_destroy
),
X
(
wg_parser_connect
),
X
64
(
wg_parser_connect
),
X
(
wg_parser_disconnect
),
X
(
wg_parser_get_next_read_offset
),
...
...
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