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
b7f74922
Commit
b7f74922
authored
Jun 26, 2012
by
Francois Gouget
Committed by
Alexandre Julliard
Jun 26, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jscript: Make int_to_bstr() static.
parent
98748efb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
jscript.h
dlls/jscript/jscript.h
+0
-1
jsutils.c
dlls/jscript/jsutils.c
+1
-1
No files found.
dlls/jscript/jscript.h
View file @
b7f74922
...
...
@@ -266,7 +266,6 @@ HRESULT variant_change_type(script_ctx_t*,VARIANT*,VARIANT*,VARTYPE) DECLSPEC_HI
HRESULT
decode_source
(
WCHAR
*
)
DECLSPEC_HIDDEN
;
BSTR
int_to_bstr
(
int
)
DECLSPEC_HIDDEN
;
HRESULT
double_to_bstr
(
double
,
BSTR
*
)
DECLSPEC_HIDDEN
;
typedef
struct
named_item_t
{
...
...
dlls/jscript/jsutils.c
View file @
b7f74922
...
...
@@ -517,7 +517,7 @@ HRESULT to_uint32(script_ctx_t *ctx, VARIANT *v, jsexcept_t *ei, DWORD *ret)
return
S_OK
;
}
BSTR
int_to_bstr
(
int
i
)
static
BSTR
int_to_bstr
(
int
i
)
{
WCHAR
buf
[
12
],
*
p
;
BOOL
neg
=
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