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
056359cc
Commit
056359cc
authored
Feb 16, 2009
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Feb 17, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: SetAbortProc is not a 16bit function but a 32bit one.
parent
68e88700
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
14 deletions
+15
-14
printdrv.c
dlls/gdi32/printdrv.c
+15
-0
printdrv16.c
dlls/gdi32/printdrv16.c
+0
-14
No files found.
dlls/gdi32/printdrv.c
View file @
056359cc
...
@@ -197,3 +197,18 @@ INT WINAPI AbortDoc(HDC hdc)
...
@@ -197,3 +197,18 @@ INT WINAPI AbortDoc(HDC hdc)
release_dc_ptr
(
dc
);
release_dc_ptr
(
dc
);
return
ret
;
return
ret
;
}
}
/**********************************************************************
* SetAbortProc (GDI32.@)
*
*/
INT
WINAPI
SetAbortProc
(
HDC
hdc
,
ABORTPROC
abrtprc
)
{
DC
*
dc
=
get_dc_ptr
(
hdc
);
if
(
!
dc
)
return
FALSE
;
dc
->
pAbortProc
=
abrtprc
;
release_dc_ptr
(
dc
);
return
TRUE
;
}
dlls/gdi32/printdrv16.c
View file @
056359cc
...
@@ -122,20 +122,6 @@ INT16 WINAPI SetAbortProc16(HDC16 hdc16, ABORTPROC16 abrtprc)
...
@@ -122,20 +122,6 @@ INT16 WINAPI SetAbortProc16(HDC16 hdc16, ABORTPROC16 abrtprc)
return
TRUE
;
return
TRUE
;
}
}
/**********************************************************************
* SetAbortProc (GDI32.@)
*
*/
INT
WINAPI
SetAbortProc
(
HDC
hdc
,
ABORTPROC
abrtprc
)
{
DC
*
dc
=
get_dc_ptr
(
hdc
);
if
(
!
dc
)
return
FALSE
;
dc
->
pAbortProc
=
abrtprc
;
release_dc_ptr
(
dc
);
return
TRUE
;
}
/****************** misc. printer related functions */
/****************** misc. printer related functions */
...
...
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