Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
8d61c96d
Commit
8d61c96d
authored
Sep 08, 2003
by
Mike McCormack
Committed by
Alexandre Julliard
Sep 08, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Create a propper stub for oleaut32.VarMod.
parent
62986a01
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
oleaut32.spec
dlls/oleaut32/oleaut32.spec
+1
-1
variant.c
dlls/oleaut32/variant.c
+10
-0
No files found.
dlls/oleaut32/oleaut32.spec
View file @
8d61c96d
...
...
@@ -150,7 +150,7 @@
152 stub VarEqv # stdcall (ptr ptr ptr)
153 stub VarIdiv # stdcall (ptr ptr ptr)
154 stub VarImp # stdcall (ptr ptr ptr)
155 st
ub VarMod # stdcall
(ptr ptr ptr)
155 st
dcall VarMod
(ptr ptr ptr)
156 stdcall VarMul(ptr ptr ptr)
157 stdcall VarOr(ptr ptr ptr)
158 stub VarPow # stdcall (ptr ptr ptr)
...
...
dlls/oleaut32/variant.c
View file @
8d61c96d
...
...
@@ -6265,3 +6265,13 @@ HRESULT WINAPI VarCyMulI4(CY cyIn, LONG mulBy, CY *pcyOut) {
}
return
rc
;
}
/**********************************************************************
* VarMod [OLEAUT32.154]
*
*/
HRESULT
WINAPI
VarMod
(
LPVARIANT
left
,
LPVARIANT
right
,
LPVARIANT
result
)
{
FIXME
(
"%p %p %p
\n
"
,
left
,
right
,
result
);
return
E_FAIL
;
}
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