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
ed3d0e00
Commit
ed3d0e00
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 RTrim implementation.
parent
71a4a1d4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
2 deletions
+35
-2
global.c
dlls/vbscript/global.c
+23
-2
api.vbs
dlls/vbscript/tests/api.vbs
+12
-0
No files found.
dlls/vbscript/global.c
View file @
ed3d0e00
...
...
@@ -879,8 +879,29 @@ static HRESULT Global_LTrim(vbdisp_t *This, VARIANT *arg, unsigned args_cnt, VAR
static
HRESULT
Global_RTrim
(
vbdisp_t
*
This
,
VARIANT
*
arg
,
unsigned
args_cnt
,
VARIANT
*
res
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
BSTR
str
,
conv_str
=
NULL
;
WCHAR
*
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
(
ptr
=
str
+
SysStringLen
(
str
);
ptr
-
1
>
str
&&
isspaceW
(
*
(
ptr
-
1
));
ptr
--
);
str
=
SysAllocStringLen
(
str
,
ptr
-
str
);
SysFreeString
(
conv_str
);
if
(
!
str
)
return
E_OUTOFMEMORY
;
return
return_bstr
(
res
,
str
);
}
static
HRESULT
Global_Trim
(
vbdisp_t
*
This
,
VARIANT
*
arg
,
unsigned
args_cnt
,
VARIANT
*
res
)
...
...
dlls/vbscript/tests/api.vbs
View file @
ed3d0e00
...
...
@@ -254,6 +254,18 @@ Sub TestRound(val, exval, vt)
Call
ok
(
getVT
(
Round
(
val
))
=
vt
,
"getVT(Round("
&
val
&
")) = "
&
getVT
(
Round
(
val
)))
End
Sub
Sub
TestRTrim
(
str
,
exstr
)
Call
ok
(
RTrim
(
str
)
=
exstr
,
"RTrim("
&
str
&
") = "
&
RTrim
(
str
))
End
Sub
TestRTrim
" test "
,
" test"
TestRTrim
"test "
,
"test"
TestRTrim
" test"
,
" test"
TestRTrim
"test"
,
"test"
TestRTrim
""
,
""
TestRTrim
123
,
"123"
if
isEnglishLang
then
TestRTrim
true
,
"True"
TestRound
3
,
3
,
"VT_I2"
TestRound
3.3
,
3
,
"VT_R8"
TestRound
3.8
,
4
,
"VT_R8"
...
...
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