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
bb658848
Commit
bb658848
authored
Jun 11, 2011
by
Francois Gouget
Committed by
Alexandre Julliard
Jun 13, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dxof: Make read_bytes() static.
parent
9c997387
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
d3dxof_private.h
dlls/d3dxof/d3dxof_private.h
+0
-1
parsing.c
dlls/d3dxof/parsing.c
+1
-1
No files found.
dlls/d3dxof/d3dxof_private.h
View file @
bb658848
...
...
@@ -162,7 +162,6 @@ typedef struct {
HRESULT
IDirectXFileImpl_Create
(
IUnknown
*
pUnkOuter
,
LPVOID
*
ppObj
)
DECLSPEC_HIDDEN
;
BOOL
read_bytes
(
parse_buffer
*
buf
,
LPVOID
data
,
DWORD
size
)
DECLSPEC_HIDDEN
;
HRESULT
parse_header
(
parse_buffer
*
buf
,
BYTE
**
decomp_buffer_ptr
)
DECLSPEC_HIDDEN
;
BOOL
parse_object
(
parse_buffer
*
buf
)
DECLSPEC_HIDDEN
;
BOOL
parse_templates
(
parse_buffer
*
buf
)
DECLSPEC_HIDDEN
;
...
...
dlls/d3dxof/parsing.c
View file @
bb658848
...
...
@@ -166,7 +166,7 @@ static void dump_template(xtemplate* templates_array, xtemplate* ptemplate)
DPRINTF
(
"}
\n
"
);
}
BOOL
read_bytes
(
parse_buffer
*
buf
,
LPVOID
data
,
DWORD
size
)
static
BOOL
read_bytes
(
parse_buffer
*
buf
,
LPVOID
data
,
DWORD
size
)
{
if
(
buf
->
rem_bytes
<
size
)
return
FALSE
;
...
...
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