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
c4be51d7
Commit
c4be51d7
authored
Dec 12, 2019
by
Hans Leidekker
Committed by
Alexandre Julliard
Dec 12, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msado15: Implement Field_get_Name and Field_get_Type.
Signed-off-by:
Hans Leidekker
<
hans@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
375c91e3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
4 deletions
+14
-4
recordset.c
dlls/msado15/recordset.c
+14
-4
No files found.
dlls/msado15/recordset.c
View file @
c4be51d7
...
...
@@ -159,14 +159,24 @@ static HRESULT WINAPI field_get_DefinedSize( Field *iface, LONG *size )
static
HRESULT
WINAPI
field_get_Name
(
Field
*
iface
,
BSTR
*
str
)
{
FIXME
(
"%p, %p
\n
"
,
iface
,
str
);
return
E_NOTIMPL
;
struct
field
*
field
=
impl_from_Field
(
iface
);
BSTR
name
;
TRACE
(
"%p, %p
\n
"
,
field
,
str
);
if
(
!
(
name
=
SysAllocString
(
field
->
name
)))
return
E_OUTOFMEMORY
;
*
str
=
name
;
return
S_OK
;
}
static
HRESULT
WINAPI
field_get_Type
(
Field
*
iface
,
DataTypeEnum
*
type
)
{
FIXME
(
"%p, %p
\n
"
,
iface
,
type
);
return
E_NOTIMPL
;
struct
field
*
field
=
impl_from_Field
(
iface
);
TRACE
(
"%p, %p
\n
"
,
field
,
type
);
*
type
=
field
->
type
;
return
S_OK
;
}
static
HRESULT
WINAPI
field_get_Value
(
Field
*
iface
,
VARIANT
*
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