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
b03b1443
Commit
b03b1443
authored
Nov 12, 2009
by
Huw Davies
Committed by
Alexandre Julliard
Nov 12, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add asysta.idl.
parent
f1748420
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
85 additions
and
0 deletions
+85
-0
usrmarshal.c
dlls/msdaps/usrmarshal.c
+31
-0
Makefile.in
include/Makefile.in
+1
-0
asysta.idl
include/asysta.idl
+51
-0
oledb.idl
include/oledb.idl
+1
-0
make_makefiles
tools/make_makefiles
+1
-0
No files found.
dlls/msdaps/usrmarshal.c
View file @
b03b1443
...
...
@@ -817,3 +817,34 @@ HRESULT __RPC_STUB IDBAsynchNotify_OnStop_Stub(IDBAsynchNotify* This, HCHAPTER h
FIXME
(
"(%p)->(%lx, %d, %08x, %s): stub
\n
"
,
This
,
hChapter
,
eOperation
,
hrStatus
,
debugstr_w
(
pwszStatusText
));
return
E_NOTIMPL
;
}
HRESULT
CALLBACK
IDBAsynchStatus_Abort_Proxy
(
IDBAsynchStatus
*
This
,
HCHAPTER
hChapter
,
DBASYNCHOP
eOperation
)
{
FIXME
(
"(%p)->(%lx, %d): stub
\n
"
,
This
,
hChapter
,
eOperation
);
return
E_NOTIMPL
;
}
HRESULT
__RPC_STUB
IDBAsynchStatus_Abort_Stub
(
IDBAsynchStatus
*
This
,
HCHAPTER
hChapter
,
DBASYNCHOP
eOperation
,
IErrorInfo
**
ppErrorInfoRem
)
{
FIXME
(
"(%p)->(%lx, %d, %p): stub
\n
"
,
This
,
hChapter
,
eOperation
,
ppErrorInfoRem
);
return
E_NOTIMPL
;
}
HRESULT
CALLBACK
IDBAsynchStatus_GetStatus_Proxy
(
IDBAsynchStatus
*
This
,
HCHAPTER
hChapter
,
DBASYNCHOP
eOperation
,
DBCOUNTITEM
*
pulProgress
,
DBCOUNTITEM
*
pulProgressMax
,
DBASYNCHPHASE
*
peAsynchPhase
,
LPOLESTR
*
ppwszStatusText
)
{
FIXME
(
"(%p)->(%lx, %d, %p, %p, %p, %p): stub
\n
"
,
This
,
hChapter
,
eOperation
,
pulProgress
,
pulProgressMax
,
peAsynchPhase
,
ppwszStatusText
);
return
E_NOTIMPL
;
}
HRESULT
__RPC_STUB
IDBAsynchStatus_GetStatus_Stub
(
IDBAsynchStatus
*
This
,
HCHAPTER
hChapter
,
DBASYNCHOP
eOperation
,
DBCOUNTITEM
*
pulProgress
,
DBCOUNTITEM
*
pulProgressMax
,
DBASYNCHPHASE
*
peAsynchPhase
,
LPOLESTR
*
ppwszStatusText
,
IErrorInfo
**
ppErrorInfoRem
)
{
FIXME
(
"(%p)->(%lx, %d, %p, %p, %p, %p, %p): stub
\n
"
,
This
,
hChapter
,
eOperation
,
pulProgress
,
pulProgressMax
,
peAsynchPhase
,
ppwszStatusText
,
ppErrorInfoRem
);
return
E_NOTIMPL
;
}
include/Makefile.in
View file @
b03b1443
...
...
@@ -107,6 +107,7 @@ SRCDIR_INCLUDES = \
af_irda.h
\
appmgmt.h
\
asynot.idl
\
asysta.idl
\
audevcod.h
\
audiosessiontypes.h
\
aviriff.h
\
...
...
include/asysta.idl
0 → 100644
View file @
b03b1443
/*
*
Copyright
(
C
)
2009
Huw
Davies
*
*
This
library
is
free
software
; you can redistribute it and/or
*
modify
it
under
the
terms
of
the
GNU
Lesser
General
Public
*
License
as
published
by
the
Free
Software
Foundation
; either
*
version
2.1
of
the
License
,
or
(
at
your
option
)
any
later
version
.
*
*
This
library
is
distributed
in
the
hope
that
it
will
be
useful
,
*
but
WITHOUT
ANY
WARRANTY
; without even the implied warranty of
*
MERCHANTABILITY
or
FITNESS
FOR
A
PARTICULAR
PURPOSE
.
See
the
GNU
*
Lesser
General
Public
License
for
more
details
.
*
*
You
should
have
received
a
copy
of
the
GNU
Lesser
General
Public
*
License
along
with
this
library
; if not, write to the Free Software
*
Foundation
,
Inc
.
,
51
Franklin
St
,
Fifth
Floor
,
Boston
,
MA
02110
-
1301
,
USA
*/
[
object
,
uuid
(
0
c733a95
-
2
a1c
-
11
ce
-
ade5
-
00
aa0044773d
),
pointer_default
(
unique
)
]
interface
IDBAsynchStatus
:
IUnknown
{
[
local
]
HRESULT
Abort
(
[
in
]
HCHAPTER
hChapter
,
[
in
]
DBASYNCHOP
eOperation
)
;
[
call_as
(
Abort
)
]
HRESULT
RemoteAbort
(
[
in
]
HCHAPTER
hChapter
,
[
in
]
DBASYNCHOP
eOperation
,
[
out
]
IErrorInfo
**
ppErrorInfoRem
)
;
[
local
]
HRESULT
GetStatus
(
[
in
]
HCHAPTER
hChapter
,
[
in
]
DBASYNCHOP
eOperation
,
[
out
,
annotation
(
"__out_opt"
)
]
DBCOUNTITEM
*
pulProgress
,
[
out
,
annotation
(
"__out_opt"
)
]
DBCOUNTITEM
*
pulProgressMax
,
[
out
,
annotation
(
"__out"
)
]
DBASYNCHPHASE
*
peAsynchPhase
,
[
out
,
annotation
(
"__deref_opt_inout_opt"
)
]
LPOLESTR
*
ppwszStatusText
)
;
[
call_as
(
GetStatus
)
]
HRESULT
RemoteGetStatus
(
[
in
]
HCHAPTER
hChapter
,
[
in
]
DBASYNCHOP
eOperation
,
[
in
,
out
,
unique
]
DBCOUNTITEM
*
pulProgress
,
[
in
,
out
,
unique
]
DBCOUNTITEM
*
pulProgressMax
,
[
in
,
out
,
unique
]
DBASYNCHPHASE
*
peAsynchPhase
,
[
in
,
out
,
unique
]
LPOLESTR
*
ppwszStatusText
,
[
out
]
IErrorInfo
**
ppErrorInfoRem
)
;
}
include/oledb.idl
View file @
b03b1443
...
...
@@ -55,6 +55,7 @@ typedef DWORD DBHASHVALUE;
#
include
"dbinit.idl"
#
include
"dbdsad.idl"
#
include
"asynot.idl"
#
include
"asysta.idl"
#
include
"sesprp.idl"
#
include
"opnrst.idl"
#
include
"row.idl"
...
...
tools/make_makefiles
View file @
b03b1443
...
...
@@ -111,6 +111,7 @@ my %exported_wine_headers = (
my
%
private_idl_headers
=
(
"access.idl"
=>
1
,
"asynot.idl"
=>
1
,
"asysta.idl"
=>
1
,
"axcore.idl"
=>
1
,
"axextend.idl"
=>
1
,
"binres.idl"
=>
1
,
...
...
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