Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
a149fd4a
Commit
a149fd4a
authored
Feb 09, 2022
by
Matteo Bruni
Committed by
Alexandre Julliard
Feb 09, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dcompiler: Move skip_u32_unknown() declaration to utils.h.
Signed-off-by:
Matteo Bruni
<
mbruni@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
0587b0eb
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
4 deletions
+2
-4
d3d10_private.h
dlls/d3d10/d3d10_private.h
+0
-2
d3dcompiler_private.h
dlls/d3dcompiler_43/d3dcompiler_private.h
+0
-2
utils.h
dlls/d3dcompiler_43/utils.h
+2
-0
No files found.
dlls/d3d10/d3d10_private.h
View file @
a149fd4a
...
...
@@ -312,8 +312,6 @@ struct d3d10_effect
HRESULT
d3d10_effect_parse
(
struct
d3d10_effect
*
effect
,
const
void
*
data
,
SIZE_T
data_size
)
DECLSPEC_HIDDEN
;
void
skip_u32_unknown
(
const
char
**
ptr
,
unsigned
int
count
)
DECLSPEC_HIDDEN
;
/* D3D10Core */
HRESULT
WINAPI
D3D10CoreCreateDevice
(
IDXGIFactory
*
factory
,
IDXGIAdapter
*
adapter
,
unsigned
int
flags
,
D3D_FEATURE_LEVEL
feature_level
,
ID3D10Device
**
device
);
...
...
dlls/d3dcompiler_43/d3dcompiler_private.h
View file @
a149fd4a
...
...
@@ -575,6 +575,4 @@ static inline void write_u32(char **ptr, uint32_t u32)
*
ptr
+=
sizeof
(
u32
);
}
void
skip_u32_unknown
(
const
char
**
ptr
,
unsigned
int
count
)
DECLSPEC_HIDDEN
;
#endif
/* __WINE_D3DCOMPILER_PRIVATE_H */
dlls/d3dcompiler_43/utils.h
View file @
a149fd4a
...
...
@@ -30,4 +30,6 @@ static inline uint32_t read_u32(const char **ptr)
return
r
;
}
void
skip_u32_unknown
(
const
char
**
ptr
,
unsigned
int
count
)
DECLSPEC_HIDDEN
;
#endif
/* __WINE_UTILS_H */
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