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
3d193930
Commit
3d193930
authored
Sep 16, 2013
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Sep 25, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oledb32: Correct DataLinks interface for win64.
parent
f7ba8e14
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
5 deletions
+7
-5
dslocator.c
dlls/oledb32/dslocator.c
+3
-3
msdasc.idl
include/msdasc.idl
+4
-2
No files found.
dlls/oledb32/dslocator.c
View file @
3d193930
...
@@ -135,7 +135,7 @@ static HRESULT WINAPI dslocator_Invoke(IDataSourceLocator *iface, DISPID dispIdM
...
@@ -135,7 +135,7 @@ static HRESULT WINAPI dslocator_Invoke(IDataSourceLocator *iface, DISPID dispIdM
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
static
HRESULT
WINAPI
dslocator_get_hWnd
(
IDataSourceLocator
*
iface
,
LONG
*
phwndParent
)
static
HRESULT
WINAPI
dslocator_get_hWnd
(
IDataSourceLocator
*
iface
,
COMPATIBLE_
LONG
*
phwndParent
)
{
{
DSLocatorImpl
*
This
=
impl_from_IDataSourceLocator
(
iface
);
DSLocatorImpl
*
This
=
impl_from_IDataSourceLocator
(
iface
);
...
@@ -144,11 +144,11 @@ static HRESULT WINAPI dslocator_get_hWnd(IDataSourceLocator *iface, LONG *phwndP
...
@@ -144,11 +144,11 @@ static HRESULT WINAPI dslocator_get_hWnd(IDataSourceLocator *iface, LONG *phwndP
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
static
HRESULT
WINAPI
dslocator_put_hWnd
(
IDataSourceLocator
*
iface
,
LONG
p
hwndParent
)
static
HRESULT
WINAPI
dslocator_put_hWnd
(
IDataSourceLocator
*
iface
,
COMPATIBLE_LONG
hwndParent
)
{
{
DSLocatorImpl
*
This
=
impl_from_IDataSourceLocator
(
iface
);
DSLocatorImpl
*
This
=
impl_from_IDataSourceLocator
(
iface
);
FIXME
(
"(%p)->(%
d)
\n
"
,
This
,
p
hwndParent
);
FIXME
(
"(%p)->(%
p)
\n
"
,
This
,
(
HWND
)
hwndParent
);
return
E_NOTIMPL
;
return
E_NOTIMPL
;
}
}
...
...
include/msdasc.idl
View file @
3d193930
...
@@ -26,6 +26,8 @@ import "oledb.idl";
...
@@ -26,6 +26,8 @@ import "oledb.idl";
#
define
vi_progid
(
str
)
#
define
vi_progid
(
str
)
#
endif
#
endif
typedef
LONG_PTR
COMPATIBLE_LONG
;
[
[
uuid
(
2206
CEB0
-
19
C1
-
11
D1
-
89
E0
-
00
C04FD7A829
),
uuid
(
2206
CEB0
-
19
C1
-
11
D1
-
89
E0
-
00
C04FD7A829
),
version
(
1.0
)
version
(
1.0
)
...
@@ -56,10 +58,10 @@ library MSDASC
...
@@ -56,10 +58,10 @@ library MSDASC
interface
IDataSourceLocator
:
IDispatch
interface
IDataSourceLocator
:
IDispatch
{
{
[
id
(
0
x60020000
),
propget
]
[
id
(
0
x60020000
),
propget
]
HRESULT
hWnd
(
[
out
,
retval
]
long
*
phwndParent
)
;
HRESULT
hWnd
(
[
out
,
retval
]
COMPATIBLE_LONG
*
phwndParent
)
;
[
id
(
0
x60020000
),
propput
]
[
id
(
0
x60020000
),
propput
]
HRESULT
hWnd
(
[
in
]
long
p
hwndParent
)
;
HRESULT
hWnd
(
[
in
]
COMPATIBLE_LONG
hwndParent
)
;
[
id
(
0
x60020002
),
helpstring
(
"PromptNew"
)
]
[
id
(
0
x60020002
),
helpstring
(
"PromptNew"
)
]
HRESULT
PromptNew
(
[
out
,
retval
]
IDispatch
**
ppADOConnection
)
;
HRESULT
PromptNew
(
[
out
,
retval
]
IDispatch
**
ppADOConnection
)
;
...
...
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