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
3d9d52db
Commit
3d9d52db
authored
May 18, 2023
by
Piotr Caban
Committed by
Alexandre Julliard
May 18, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
localspl: Fix wow64_start_doc Wow64 entry point.
parent
9749caf7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
cups.c
dlls/localspl/cups.c
+5
-5
No files found.
dlls/localspl/cups.c
View file @
3d9d52db
...
...
@@ -520,9 +520,9 @@ static NTSTATUS wow64_start_doc(void *args)
struct
{
unsigned
int
type
;
const
PTR32
port
;
const
PTR32
document_title
;
INT64
*
doc
;
PTR32
port
;
PTR32
document_title
;
PTR32
doc
;
}
const
*
params32
=
args
;
struct
start_doc_params
params
=
...
...
@@ -530,7 +530,7 @@ static NTSTATUS wow64_start_doc(void *args)
params32
->
type
,
ULongToPtr
(
params32
->
port
),
ULongToPtr
(
params32
->
document_title
),
params32
->
doc
,
ULongToPtr
(
params32
->
doc
)
,
};
return
start_doc
(
&
params
);
...
...
@@ -541,7 +541,7 @@ static NTSTATUS wow64_write_doc(void *args)
struct
{
INT64
doc
;
const
PTR32
buf
;
PTR32
buf
;
unsigned
int
size
;
}
const
*
params32
=
args
;
...
...
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