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
8fef006f
Commit
8fef006f
authored
Aug 18, 2001
by
Mike McCormack
Committed by
Alexandre Julliard
Aug 18, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implemented oleaut32.VarBstrCat.
parent
e08a1b53
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
1 deletion
+21
-1
oleaut32.spec
dlls/oleaut32/oleaut32.spec
+1
-1
variant.c
dlls/oleaut32/variant.c
+20
-0
No files found.
dlls/oleaut32/oleaut32.spec
View file @
8fef006f
...
...
@@ -317,7 +317,7 @@ debug_channels (ole typelib)
436 stub VarAbs # stdcall (ptr ptr)
437 stub VarAdd # stdcall (ptr ptr ptr)
438 stub VarAnd # stdcall (ptr ptr ptr)
439 st
ub VarBstrCat # stdcall (ptr ptr ptr)
439 st
dcall VarBstrCat(ptr ptr ptr) VarBstrCat
440 stdcall VarBstrCmp(ptr ptr long long) VarBstrCmp
441 stub VarCat # stdcall (ptr ptr ptr)
442 stub VarCmp # stdcall (ptr ptr long long)
...
...
dlls/oleaut32/variant.c
View file @
8fef006f
...
...
@@ -4672,3 +4672,23 @@ HRESULT WINAPI VarBstrCmp(BSTR left, BSTR right, LCID lcid, DWORD flags)
return
VARCMP_EQ
;
}
/**********************************************************************
* VarBstrCat [OLEAUT32.439]
*/
HRESULT
WINAPI
VarBstrCat
(
BSTR
left
,
BSTR
right
,
BSTR
*
out
)
{
BSTR
result
;
TRACE
(
"( %s %s %p )
\n
"
,
debugstr_w
(
left
),
debugstr_w
(
right
),
out
);
if
(
(
!
left
)
||
(
!
right
)
||
(
!
out
)
)
return
0
;
result
=
SysAllocStringLen
(
left
,
lstrlenW
(
left
)
+
lstrlenW
(
right
));
lstrcatW
(
result
,
right
);
*
out
=
result
;
return
1
;
}
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