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
9ce31cf8
Commit
9ce31cf8
authored
Aug 25, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dxof: Don't make local variables static.
parent
2f982061
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
d3dxof.c
dlls/d3dxof/d3dxof.c
+4
-4
No files found.
dlls/d3dxof/d3dxof.c
View file @
9ce31cf8
...
...
@@ -367,7 +367,7 @@ static WORD get_keyword_token(parse_buffer* buf)
static
BOOL
is_guid
(
parse_buffer
*
buf
)
{
static
char
tmp
[
50
];
char
tmp
[
50
];
DWORD
pos
=
1
;
GUID
class_id
;
DWORD
tab
[
10
];
...
...
@@ -417,7 +417,7 @@ static BOOL is_guid(parse_buffer* buf)
static
BOOL
is_name
(
parse_buffer
*
buf
)
{
static
char
tmp
[
50
];
char
tmp
[
50
];
DWORD
pos
=
0
;
char
c
;
BOOL
error
=
0
;
...
...
@@ -446,7 +446,7 @@ static BOOL is_name(parse_buffer* buf)
static
BOOL
is_integer
(
parse_buffer
*
buf
)
{
static
char
tmp
[
50
];
char
tmp
[
50
];
DWORD
pos
=
0
;
char
c
;
DWORD
integer
;
...
...
@@ -666,7 +666,7 @@ static inline BOOL is_primitive_type(WORD token)
static
BOOL
parse_name
(
parse_buffer
*
buf
)
{
DWORD
count
;
static
char
strname
[
100
];
char
strname
[
100
];
if
(
parse_TOKEN
(
buf
)
!=
TOKEN_NAME
)
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