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
47f280ca
Commit
47f280ca
authored
Dec 03, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Dec 05, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wined3d: Enable long types in wined3d_main.c.
parent
6e33aa22
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
wined3d_main.c
dlls/wined3d/wined3d_main.c
+2
-3
No files found.
dlls/wined3d/wined3d_main.c
View file @
47f280ca
...
@@ -21,7 +21,6 @@
...
@@ -21,7 +21,6 @@
* License along with this library; if not, write to the Free Software
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
*/
#define WINE_NO_LONG_TYPES
/* temporary */
#define VKD3D_NO_VULKAN_H
#define VKD3D_NO_VULKAN_H
#define VKD3D_NO_WIN32_TYPES
#define VKD3D_NO_WIN32_TYPES
...
@@ -146,7 +145,7 @@ struct wined3d * CDECL wined3d_create(uint32_t flags)
...
@@ -146,7 +145,7 @@ struct wined3d * CDECL wined3d_create(uint32_t flags)
if
(
FAILED
(
hr
=
wined3d_init
(
object
,
flags
)))
if
(
FAILED
(
hr
=
wined3d_init
(
object
,
flags
)))
{
{
WARN
(
"Failed to initialize wined3d object, hr %#x.
\n
"
,
hr
);
WARN
(
"Failed to initialize wined3d object, hr %#
l
x.
\n
"
,
hr
);
heap_free
(
object
);
heap_free
(
object
);
return
NULL
;
return
NULL
;
}
}
...
@@ -570,7 +569,7 @@ static struct wined3d_output * wined3d_get_output_from_window(const struct wined
...
@@ -570,7 +569,7 @@ static struct wined3d_output * wined3d_get_output_from_window(const struct wined
monitor_info
.
cbSize
=
sizeof
(
monitor_info
);
monitor_info
.
cbSize
=
sizeof
(
monitor_info
);
if
(
!
GetMonitorInfoW
(
monitor
,
(
MONITORINFO
*
)
&
monitor_info
))
if
(
!
GetMonitorInfoW
(
monitor
,
(
MONITORINFO
*
)
&
monitor_info
))
{
{
ERR
(
"GetMonitorInfoW failed, error %#x.
\n
"
,
GetLastError
());
ERR
(
"GetMonitorInfoW failed, error %#
l
x.
\n
"
,
GetLastError
());
return
NULL
;
return
NULL
;
}
}
...
...
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