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
3ea9a170
Commit
3ea9a170
authored
Oct 02, 2012
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 02, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vbscript: Added Trim() implementation.
parent
88f14bb5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
2 deletions
+36
-2
global.c
dlls/vbscript/global.c
+24
-2
api.vbs
dlls/vbscript/tests/api.vbs
+12
-0
No files found.
dlls/vbscript/global.c
View file @
3ea9a170
...
@@ -864,8 +864,30 @@ static HRESULT Global_RTrim(vbdisp_t *This, VARIANT *arg, unsigned args_cnt, VAR
...
@@ -864,8 +864,30 @@ static HRESULT Global_RTrim(vbdisp_t *This, VARIANT *arg, unsigned args_cnt, VAR
static
HRESULT
Global_Trim
(
vbdisp_t
*
This
,
VARIANT
*
arg
,
unsigned
args_cnt
,
VARIANT
*
res
)
static
HRESULT
Global_Trim
(
vbdisp_t
*
This
,
VARIANT
*
arg
,
unsigned
args_cnt
,
VARIANT
*
res
)
{
{
FIXME
(
"
\n
"
);
BSTR
str
,
conv_str
=
NULL
;
return
E_NOTIMPL
;
WCHAR
*
begin_ptr
,
*
end_ptr
;
HRESULT
hres
;
TRACE
(
"%s
\n
"
,
debugstr_variant
(
arg
));
if
(
V_VT
(
arg
)
==
VT_BSTR
)
{
str
=
V_BSTR
(
arg
);
}
else
{
hres
=
to_string
(
arg
,
&
conv_str
);
if
(
FAILED
(
hres
))
return
hres
;
str
=
conv_str
;
}
for
(
begin_ptr
=
str
;
*
begin_ptr
&&
isspaceW
(
*
begin_ptr
);
begin_ptr
++
);
for
(
end_ptr
=
str
+
SysStringLen
(
str
);
end_ptr
-
1
>
begin_ptr
&&
isspaceW
(
*
(
end_ptr
-
1
));
end_ptr
--
);
str
=
SysAllocStringLen
(
begin_ptr
,
end_ptr
-
begin_ptr
);
SysFreeString
(
conv_str
);
if
(
!
str
)
return
E_OUTOFMEMORY
;
return
return_bstr
(
res
,
str
);
}
}
static
HRESULT
Global_Space
(
vbdisp_t
*
This
,
VARIANT
*
arg
,
unsigned
args_cnt
,
VARIANT
*
res
)
static
HRESULT
Global_Space
(
vbdisp_t
*
This
,
VARIANT
*
arg
,
unsigned
args_cnt
,
VARIANT
*
res
)
...
...
dlls/vbscript/tests/api.vbs
View file @
3ea9a170
...
@@ -225,6 +225,18 @@ TestRight "test", 0, ""
...
@@ -225,6 +225,18 @@ TestRight "test", 0, ""
TestRight
123
,
2
,
"23"
TestRight
123
,
2
,
"23"
if
isEnglishLang
then
TestRight
true
,
2
,
"ue"
if
isEnglishLang
then
TestRight
true
,
2
,
"ue"
Sub
TestTrim
(
str
,
exstr
)
Call
ok
(
Trim
(
str
)
=
exstr
,
"Trim("
&
str
&
") = "
&
Trim
(
str
))
End
Sub
TestTrim
" test "
,
"test"
TestTrim
"test "
,
"test"
TestTrim
" test"
,
"test"
TestTrim
"test"
,
"test"
TestTrim
""
,
""
TestTrim
123
,
"123"
if
isEnglishLang
then
TestTrim
true
,
"True"
Sub
TestRound
(
val
,
exval
,
vt
)
Sub
TestRound
(
val
,
exval
,
vt
)
Call
ok
(
Round
(
val
)
=
exval
,
"Round("
&
val
&
") = "
&
Round
(
val
))
Call
ok
(
Round
(
val
)
=
exval
,
"Round("
&
val
&
") = "
&
Round
(
val
))
Call
ok
(
getVT
(
Round
(
val
))
=
vt
,
"getVT(Round("
&
val
&
")) = "
&
getVT
(
Round
(
val
)))
Call
ok
(
getVT
(
Round
(
val
))
=
vt
,
"getVT(Round("
&
val
&
")) = "
&
getVT
(
Round
(
val
)))
...
...
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