Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
82f37be9
Commit
82f37be9
authored
Jan 15, 2000
by
Gerard Patel
Committed by
Alexandre Julliard
Jan 15, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed DeleteObject call left over from previous patch.
parent
775a0332
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
2 deletions
+38
-2
dc.c
objects/dc.c
+38
-2
No files found.
objects/dc.c
View file @
82f37be9
...
@@ -614,7 +614,6 @@ HDC16 WINAPI CreateCompatibleDC16( HDC16 hdc )
...
@@ -614,7 +614,6 @@ HDC16 WINAPI CreateCompatibleDC16( HDC16 hdc )
HDC
WINAPI
CreateCompatibleDC
(
HDC
hdc
)
HDC
WINAPI
CreateCompatibleDC
(
HDC
hdc
)
{
{
DC
*
dc
,
*
origDC
;
DC
*
dc
,
*
origDC
;
HBITMAP
hbitmap
;
const
DC_FUNCTIONS
*
funcs
;
const
DC_FUNCTIONS
*
funcs
;
if
((
origDC
=
(
DC
*
)
GDI_GetObjPtr
(
hdc
,
DC_MAGIC
)))
funcs
=
origDC
->
funcs
;
if
((
origDC
=
(
DC
*
)
GDI_GetObjPtr
(
hdc
,
DC_MAGIC
)))
funcs
=
origDC
->
funcs
;
...
@@ -640,7 +639,6 @@ HDC WINAPI CreateCompatibleDC( HDC hdc )
...
@@ -640,7 +639,6 @@ HDC WINAPI CreateCompatibleDC( HDC hdc )
!
dc
->
funcs
->
pCreateDC
(
dc
,
NULL
,
NULL
,
NULL
,
NULL
))
!
dc
->
funcs
->
pCreateDC
(
dc
,
NULL
,
NULL
,
NULL
,
NULL
))
{
{
WARN
(
"creation aborted by device
\n
"
);
WARN
(
"creation aborted by device
\n
"
);
DeleteObject
(
hbitmap
);
GDI_HEAP_FREE
(
dc
->
hSelf
);
GDI_HEAP_FREE
(
dc
->
hSelf
);
return
0
;
return
0
;
}
}
...
@@ -1288,6 +1286,44 @@ HCOLORSPACE WINAPI GetColorSpace(HDC hdc)
...
@@ -1288,6 +1286,44 @@ HCOLORSPACE WINAPI GetColorSpace(HDC hdc)
}
}
/***********************************************************************
/***********************************************************************
* CreateColorSpaceA (GDI32.???)
*/
HCOLORSPACE
WINAPI
CreateColorSpaceA
(
LPLOGCOLORSPACEA
lpLogColorSpace
)
{
FIXME
(
"stub
\n
"
);
return
0
;
}
/***********************************************************************
* CreateColorSpaceW (GDI32.???)
*/
HCOLORSPACE
WINAPI
CreateColorSpaceW
(
LPLOGCOLORSPACEW
lpLogColorSpace
)
{
FIXME
(
"stub
\n
"
);
return
0
;
}
/***********************************************************************
* DeleteColorSpace (GDI32.???)
*/
BOOL
WINAPI
DeleteColorSpace
(
HCOLORSPACE
hColorSpace
)
{
FIXME
(
"stub
\n
"
);
return
True
;
}
/***********************************************************************
* SetColorSpace (GDI32.???)
*/
HCOLORSPACE
WINAPI
SetColorSpace
(
HDC
hDC
,
HCOLORSPACE
hColorSpace
)
{
FIXME
(
"stub
\n
"
);
return
hColorSpace
;
}
/***********************************************************************
* GetBoundsRect16 (GDI.194)
* GetBoundsRect16 (GDI.194)
*/
*/
UINT16
WINAPI
GetBoundsRect16
(
HDC16
hdc
,
LPRECT16
rect
,
UINT16
flags
)
UINT16
WINAPI
GetBoundsRect16
(
HDC16
hdc
,
LPRECT16
rect
,
UINT16
flags
)
...
...
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