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
399e41fc
Commit
399e41fc
authored
Nov 21, 1999
by
Andreas Mohr
Committed by
Alexandre Julliard
Nov 21, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some ordinals and GetDriverResourceID().
parent
42666eea
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
44 additions
and
0 deletions
+44
-0
display.spec
if1632/display.spec
+25
-0
display.c
windows/display.c
+19
-0
No files found.
if1632/display.spec
View file @
399e41fc
...
...
@@ -22,6 +22,24 @@ type win16
19 stub DeviceBitmapBits
20 stub CreateBitmap
21 stub DIBScreenBlt
# ATI driver exports
22 stub SetPalette
23 stub GetPalette
24 stub SetPaletteTranslate
25 stub GetPaletteTranslate
26 stub UpdateColors
27 stub StretchBlt
28 stub StrechDIBits
29 stub SelectBitmap
30 stub BitmapBits
31 stub ReEnable
# these conflict with ordinals 19-21, thus relocated to 39-41 !
39 stub DIBBlt
40 stub CreateDIBitmap
41 stub DIBToDevice
# ATI driver end
90 stub Do_Polylines
91 stub Do_Scanlines
92 stub SaveScreenBitmap
...
...
@@ -29,7 +47,14 @@ type win16
102 pascal16 SetCursor(ptr) DISPLAY_SetCursor
103 pascal16 MoveCursor(word word) DISPLAY_MoveCursor
104 pascal16 CheckCursor() DISPLAY_CheckCursor
400 stub PExtTextOut
401 stub PStrBlt
402 stub RExtTextOut
403 stub RStrBlt
450 pascal GetDriverResourceID(word str) DISPLAY_GetDriverResourceID
500 pascal16 UserRepaintDisable(word) UserRepaintDisable16
501 stub ORDINAL_ONLY1
502 stub ORDINAL_ONLY2
600 stub InkReady
601 stub GetLPDevice
windows/display.c
View file @
399e41fc
...
...
@@ -50,6 +50,25 @@ VOID WINAPI DISPLAY_CheckCursor( void )
}
/***********************************************************************
* DISPLAY_GetDriverResourceID (DISPLAY.450)
*
* Used by USER to check if driver contains better version of a builtin
* resource than USER.
* wQueriedResID is the ID USER asks about.
* lpsResName might often contain "OEMBIN".
* For now we just let USER use its own resource.
*/
DWORD
WINAPI
DISPLAY_GetDriverResourceID
(
WORD
wQueriedResID
,
LPSTR
lpsResName
)
{
FIXME
(
"Return the display resource ID
\n
"
);
if
(
wQueriedResID
==
3
)
return
(
DWORD
)
wQueriedResID
/*FIXME resourceID*/
;
return
(
DWORD
)
wQueriedResID
;
}
/***********************************************************************
* UserRepaintDisable (DISPLAY.500)
*/
VOID
WINAPI
UserRepaintDisable16
(
BOOL16
disable
)
...
...
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