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
71f7a460
Commit
71f7a460
authored
Oct 11, 1998
by
Ulrich Weigand
Committed by
Alexandre Julliard
Oct 11, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stubs for CreateUser(Discardable)Bitmap16.
parent
bf5f693f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
2 deletions
+22
-2
gdi.spec
if1632/gdi.spec
+2
-2
bitmap.c
objects/bitmap.c
+20
-0
No files found.
if1632/gdi.spec
View file @
71f7a460
...
...
@@ -267,8 +267,8 @@ file gdi.exe
403 stub GDIINIT2
404 stub GetTTGlyphIndexMap
405 stub FINALGDIINIT
407
stub CREATEUSERBITMAP
409
stub CREATEUSERDISCARDABLEBITMAP
407
pascal16 CreateUserBitmap(word word word word ptr) CreateUserBitmap16
409
pascal16 CreateUserDiscardableBitmap(word word word) CreateUserDiscardableBitmap16
410 pascal16 IsValidMetaFile (word) IsValidMetaFile
411 pascal16 GetCurLogFont(word) GetCurLogFont
412 pascal16 IsDCCurrentPalette(word) IsDCCurrentPalette
...
...
objects/bitmap.c
View file @
71f7a460
...
...
@@ -120,6 +120,26 @@ INT32 BITMAP_GetBitsWidth( int bmWidth, int bpp )
}
/***********************************************************************
* CreateUserBitmap16 (GDI.407)
*/
HBITMAP16
WINAPI
CreateUserBitmap16
(
INT16
width
,
INT16
height
,
UINT16
planes
,
UINT16
bpp
,
LPCVOID
bits
)
{
return
CreateBitmap16
(
width
,
height
,
planes
,
bpp
,
bits
);
}
/***********************************************************************
* CreateUserDiscardableBitmap16 (GDI.409)
*/
HBITMAP16
WINAPI
CreateUserDiscardableBitmap16
(
WORD
dummy
,
INT16
width
,
INT16
height
)
{
return
CreateUserBitmap16
(
width
,
height
,
1
,
screenDepth
,
NULL
);
}
/***********************************************************************
* CreateBitmap16 (GDI.48)
*/
HBITMAP16
WINAPI
CreateBitmap16
(
INT16
width
,
INT16
height
,
UINT16
planes
,
...
...
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