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
04a0f74b
Commit
04a0f74b
authored
Aug 18, 2006
by
Andrew Talbot
Committed by
Alexandre Julliard
Aug 23, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ddraw: Write-strings warnings fix.
parent
4e474034
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
main.c
dlls/ddraw/main.c
+8
-2
No files found.
dlls/ddraw/main.c
View file @
04a0f74b
...
...
@@ -390,7 +390,10 @@ DirectDrawEnumerateA(LPDDENUMCALLBACKA Callback,
/* We only have one driver */
__TRY
{
stop
=
!
Callback
(
NULL
,
"DirectDraw HAL"
,
"display"
,
Context
);
static
CHAR
driver_desc
[]
=
"DirectDraw HAL"
,
driver_name
[]
=
"display"
;
stop
=
!
Callback
(
NULL
,
driver_desc
,
driver_name
,
Context
);
}
__EXCEPT_PAGE_FAULT
{
...
...
@@ -422,8 +425,11 @@ DirectDrawEnumerateExA(LPDDENUMCALLBACKEXA Callback,
/* We only have one driver by now */
__TRY
{
static
CHAR
driver_desc
[]
=
"DirectDraw HAL"
,
driver_name
[]
=
"display"
;
/* QuickTime expects the description "DirectDraw HAL" */
stop
=
!
Callback
(
NULL
,
"DirectDraw HAL"
,
"display"
,
Context
,
0
);
stop
=
!
Callback
(
NULL
,
driver_desc
,
driver_name
,
Context
,
0
);
}
__EXCEPT_PAGE_FAULT
{
...
...
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