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
cf67b00a
Commit
cf67b00a
authored
Sep 20, 2001
by
Andreas Mohr
Committed by
Alexandre Julliard
Sep 20, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stub for GdiInit2().
parent
f7885833
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
3 deletions
+19
-3
gdi.spec
dlls/gdi/gdi.spec
+1
-1
gdiobj.c
objects/gdiobj.c
+18
-2
No files found.
dlls/gdi/gdi.spec
View file @
cf67b00a
...
...
@@ -297,7 +297,7 @@ rsrc version16.res
400 pascal16 FastWindowFrame(word ptr s_word s_word long) FastWindowFrame16
401 stub GDIMOVEBITMAP
402 stub GDIGETBITSGLOBAL # W2.0 (only ?)
403
stub GDIINIT2
403
pascal16 GdiInit2(word word) GdiInit216
404 stub GetTTGlyphIndexMap
405 pascal16 FinalGdiInit(word) FinalGdiInit16
406 stub CREATEREALBITMAPINDIRECT # W2.0 (only ?)
...
...
objects/gdiobj.c
View file @
cf67b00a
...
...
@@ -504,7 +504,7 @@ BOOL WINAPI DeleteObject( HGDIOBJ obj )
WARN
(
"Already deleted
\n
"
);
break
;
default:
WARN
(
"Unknown magic number (%
d
)
\n
"
,
GDIMAGIC
(
header
->
wMagic
));
WARN
(
"Unknown magic number (%
04x
)
\n
"
,
GDIMAGIC
(
header
->
wMagic
));
}
GDI_ReleaseObj
(
obj
);
return
FALSE
;
...
...
@@ -1125,9 +1125,25 @@ WORD WINAPI GdiSignalProc( UINT uCode, DWORD dwThreadOrProcessID,
}
/***********************************************************************
* GdiInit2 (GDI.405)
*
* See "Undocumented Windows"
*/
HANDLE16
WINAPI
GdiInit216
(
HANDLE16
h1
,
/* GDI object */
HANDLE16
h2
/* global data */
)
{
FIXME
(
"(%04x, %04x), stub.
\n
"
,
h1
,
h2
);
if
(
h2
==
0xffff
)
return
0xffff
;
/* undefined return value */
return
h1
;
/* FIXME: should be the memory handle of h1 */
}
/***********************************************************************
* FinalGdiInit (GDI.405)
*/
void
WINAPI
FinalGdiInit16
(
H
ANDLE16
unknown
)
void
WINAPI
FinalGdiInit16
(
H
BRUSH16
hPattern
/* fill pattern of desktop */
)
{
}
...
...
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