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
b7937afa
Commit
b7937afa
authored
Jun 20, 2002
by
Mike McCormack
Committed by
Alexandre Julliard
Jun 20, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed ordinals to match the Windows values.
Added a couple of stubs.
parent
4144b5b8
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
2 deletions
+20
-2
oleaut32.spec
dlls/oleaut32/oleaut32.spec
+0
-0
safearray.c
dlls/oleaut32/safearray.c
+2
-2
variant.c
dlls/oleaut32/variant.c
+18
-0
No files found.
dlls/oleaut32/oleaut32.spec
View file @
b7937afa
This diff is collapsed.
Click to expand it.
dlls/oleaut32/safearray.c
View file @
b7937afa
...
...
@@ -1135,10 +1135,10 @@ static HRESULT duplicateData(
/************************************************************************
* SafeArrayGetVar
T
ype (OLEAUT32.77)
* SafeArrayGetVar
t
ype (OLEAUT32.77)
* Returns the VARTYPE stored in the given safearray
*/
HRESULT
WINAPI
SafeArrayGetVar
T
ype
(
HRESULT
WINAPI
SafeArrayGetVar
t
ype
(
SAFEARRAY
*
psa
,
VARTYPE
*
pvt
)
{
...
...
dlls/oleaut32/variant.c
View file @
b7937afa
...
...
@@ -4574,6 +4574,24 @@ HRESULT WINAPI VarNumFromParseNum(NUMPARSE * pnumprs, BYTE * rgbDig,
/**********************************************************************
* VarFormatDateTime [OLEAUT32.97]
*/
HRESULT
WINAPI
VarFormatDateTime
(
LPVARIANT
var
,
INT
format
,
ULONG
dwFlags
,
BSTR
*
out
)
{
FIXME
(
"%p %d %lx %p
\n
"
,
var
,
format
,
dwFlags
,
out
);
return
E_NOTIMPL
;
}
/**********************************************************************
* VarFormatCurrency [OLEAUT32.127]
*/
HRESULT
WINAPI
VarFormatCurrency
(
LPVARIANT
var
,
INT
digits
,
INT
lead
,
INT
paren
,
INT
group
,
ULONG
dwFlags
,
BSTR
*
out
)
{
FIXME
(
"%p %d %d %d %d %lx %p
\n
"
,
var
,
digits
,
lead
,
paren
,
group
,
dwFlags
,
out
);
return
E_NOTIMPL
;
}
/**********************************************************************
* VariantTimeToDosDateTime [OLEAUT32.13]
* Convert variant representation of time to the date and time representation
* stored in dos.
...
...
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