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
0ad8a18e
Commit
0ad8a18e
authored
Jun 14, 2013
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Jul 30, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msdasc.idl: Add coclass DataLinks.
parent
55e37bdb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
61 additions
and
0 deletions
+61
-0
msdasc.idl
include/msdasc.idl
+61
-0
No files found.
include/msdasc.idl
View file @
0ad8a18e
...
...
@@ -34,6 +34,56 @@ library MSDASC
{
importlib
(
"stdole2.tlb"
)
;
typedef
DWORD
DBPROMPTOPTIONS
;
typedef
enum
tagDBPROMPTOPTIONSENUM
{
DBPROMPTOPTIONS_NONE
=
0
x00
,
DBPROMPTOPTIONS_WIZARDSHEET
=
0
x01
,
DBPROMPTOPTIONS_PROPERTYSHEET
=
0
x02
,
DBPROMPTOPTIONS_BROWSEONLY
=
0
x08
,
DBPROMPTOPTIONS_DISABLE_PROVIDER_SELECTION
=
0
x10
,
DBPROMPTOPTIONS_DISABLESAVEPASSWORD
=
0
x20
}
DBPROMPTOPTIONSENUM
;
[
odl
,
uuid
(
2206
CCB2
-
19
C1
-
11
D1
-
89
E0
-
00
C04FD7A829
),
helpstring
(
"OLE DB Service Component Automation Interface"
),
dual
,
oleautomation
]
interface
IDataSourceLocator
:
IDispatch
{
[
id
(
0
x60020000
),
propget
]
HRESULT
hWnd
(
[
out
,
retval
]
long
*
phwndParent
)
;
[
id
(
0
x60020000
),
propput
]
HRESULT
hWnd
(
[
in
]
long
phwndParent
)
;
[
id
(
0
x60020002
),
helpstring
(
"PromptNew"
)
]
HRESULT
PromptNew
(
[
out
,
retval
]
IDispatch
**
ppADOConnection
)
;
[
id
(
0
x60020003
),
helpstring
(
"PromptEdit"
)
]
HRESULT
PromptEdit
(
[
in
,
out
]
IDispatch
**
ppADOConnection
,
[
out
,
retval
]
VARIANT_BOOL
*
pbSuccess
)
;
}
[
odl
,
uuid
(
2206
CCB0
-
19
C1
-
11
D1
-
89
E0
-
00
C04FD7A829
),
restricted
]
interface
IDBPromptInitialize
:
IUnknown
{
HRESULT
_stdcall
PromptDataSource
(
[
in
]
IUnknown
*
pUnkOuter
,
[
in
]
HWND
hWndParent
,
[
in
]
DBPROMPTOPTIONS
dwPromptOptions
,
[
in
]
ULONG
cSourceTypeFilter
,
[
in
]
DBSOURCETYPE
*
rgSourceTypeFilter
,
[
in
]
LPWSTR
pwszszzProviderFilter
,
[
in
]
GUID
*
riid
,
[
in
,
out
]
IUnknown
**
ppDataSource
)
;
HRESULT
_stdcall
PromptFileName
(
[
in
]
HWND
hWndParent
,
[
in
]
ULONG
dwPromptOptions
,
[
in
]
LPWSTR
pwszInitialDirectory
,
[
in
]
LPWSTR
pwszInitialFile
,
[
out
]
LPWSTR
*
ppwszSelectedFile
)
;
}
[
uuid
(
2206
CCB1
-
19
C1
-
11
D1
-
89
E0
-
00
C04FD7A829
),
]
...
...
@@ -71,4 +121,15 @@ library MSDASC
{
[
default
]
interface
IDataInitialize
;
}
[
uuid
(
2206
CDB2
-
19
C1
-
11
D1
-
89
E0
-
00
C04FD7A829
),
progid
(
"DataLinks"
)
]
coclass
DataLinks
{
[
default
]
interface
IDataSourceLocator
;
interface
IDBPromptInitialize
;
interface
IDataInitialize
;
}
}
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