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
aa8f0089
Commit
aa8f0089
authored
Jan 14, 2009
by
Andrey Turkin
Committed by
Alexandre Julliard
Jan 14, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add ctxtcall.idl file with IContextCallback interface definition.
parent
a28052ab
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
52 additions
and
0 deletions
+52
-0
.gitignore
.gitignore
+1
-0
uuid.c
dlls/uuid/uuid.c
+1
-0
Makefile.in
include/Makefile.in
+1
-0
ctxtcall.idl
include/ctxtcall.idl
+49
-0
No files found.
.gitignore
View file @
aa8f0089
...
...
@@ -142,6 +142,7 @@ include/bits1_5.h
include/comcat.h
include/config.h
include/control.h
include/ctxtcall.h
include/d3d10.h
include/ddstream.h
include/dimm.h
...
...
dlls/uuid/uuid.c
View file @
aa8f0089
...
...
@@ -41,6 +41,7 @@ DEFINE_GUID(GUID_NULL,0,0,0,0,0,0,0,0,0,0,0);
#include "olectl.h"
#include "ocidl.h"
#include "ctxtcall.h"
#include "docobj.h"
#include "exdisp.h"
...
...
include/Makefile.in
View file @
aa8f0089
...
...
@@ -18,6 +18,7 @@ PUBLIC_IDL_H_SRCS = \
bits1_5.idl
\
comcat.idl
\
control.idl
\
ctxtcall.idl
\
d3d10.idl
\
ddstream.idl
\
dimm.idl
\
...
...
include/ctxtcall.idl
0 → 100644
View file @
aa8f0089
/*
*
Copyright
(
C
)
2008
Louis
Lenders
*
*
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
*/
import
"wtypes.idl"
;
import
"objidl.idl"
;
import
"unknwn.idl"
;
typedef
struct
tagComCallData
{
DWORD
dwDispid
;
DWORD
dwReserved
;
void
*
pUserDefined
;
}
ComCallData
;
/***************************************************************************
*
IContextCallback
*/
[
local
,
object
,
uuid
(
000001
da
-
0000
-
0000
-
c000
-
000000000046
),
pointer_default
(
unique
)
]
interface
IContextCallback
:
IUnknown
{
typedef
HRESULT
(
__stdcall
*
PFNCONTEXTCALL
)(
ComCallData
*
pParam
)
;
HRESULT
ContextCallback
(
[
in
]
PFNCONTEXTCALL
pCallback
,
[
in
]
ComCallData
*
pParam
,
[
in
]
REFIID
riid
,
[
in
]
int
iMethod
,
[
in
]
IUnknown
*
pUnk
)
;
}
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