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
f34e733c
Commit
f34e733c
authored
Jan 24, 2009
by
Andrew Talbot
Committed by
Alexandre Julliard
Jan 26, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
setupapi: Declare a function static.
parent
247b7c5a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
4 deletions
+2
-4
parser.c
dlls/setupapi/parser.c
+2
-2
setupapi_private.h
dlls/setupapi/setupapi_private.h
+0
-2
No files found.
dlls/setupapi/parser.c
View file @
f34e733c
...
...
@@ -365,8 +365,8 @@ static const WCHAR *get_string_subst( const struct inf_file *file, const WCHAR *
/* do string substitutions on the specified text */
/* the buffer is assumed to be large enough */
/* returns necessary length not including terminating null */
unsigned
int
PARSER_string_substW
(
const
struct
inf_file
*
file
,
const
WCHAR
*
text
,
WCHAR
*
buffer
,
unsigned
int
size
)
static
unsigned
int
PARSER_string_substW
(
const
struct
inf_file
*
file
,
const
WCHAR
*
text
,
WCHAR
*
buffer
,
unsigned
int
size
)
{
const
WCHAR
*
start
,
*
subst
,
*
p
;
unsigned
int
len
,
total
=
0
;
...
...
dlls/setupapi/setupapi_private.h
View file @
f34e733c
...
...
@@ -70,8 +70,6 @@ struct inf_file;
extern
const
WCHAR
*
DIRID_get_string
(
int
dirid
);
extern
unsigned
int
PARSER_string_substA
(
const
struct
inf_file
*
file
,
const
WCHAR
*
text
,
char
*
buffer
,
unsigned
int
size
);
extern
unsigned
int
PARSER_string_substW
(
const
struct
inf_file
*
file
,
const
WCHAR
*
text
,
WCHAR
*
buffer
,
unsigned
int
size
);
extern
const
WCHAR
*
PARSER_get_inf_filename
(
HINF
hinf
);
extern
WCHAR
*
PARSER_get_src_root
(
HINF
hinf
);
extern
WCHAR
*
PARSER_get_dest_dir
(
INFCONTEXT
*
context
);
...
...
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