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
07a80512
Commit
07a80512
authored
Aug 22, 2004
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added recursive idl target to allow updating idl files private to a
dll.
parent
cfb3b7e8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
29 additions
and
6 deletions
+29
-6
Make.rules.in
Make.rules.in
+11
-2
Makefile.in
dlls/ole32/Makefile.in
+10
-0
dcom.h
dlls/ole32/dcom.h
+8
-2
Makefile.in
include/Makefile.in
+0
-2
No files found.
Make.rules.in
View file @
07a80512
...
...
@@ -225,6 +225,17 @@ clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
.PHONY: clean testclean $(SUBDIRS:%=%/__clean__) $(SUBDIRS:%=%/__testclean__) $(EXTRASUBDIRS:%=%/__clean__)
# Rules for IDL files
idl: $(SUBDIRS:%=%/__idl__)
$(IDL_SRCS:.idl=.h): $(WIDL)
$(SUBDIRS:%=%/__idl__): dummy
cd `dirname $@` && $(MAKE) idl
.PHONY: idl
# Rules for installing
$(SUBDIRS:%=%/__install__): dummy
...
...
@@ -268,8 +279,6 @@ $(SUBDIRS:%=%/__crosstest__): dummy
$(MC_SRCS:.mc=.mc.rc): $(WMC)
$(IDL_SRCS:.idl=.h): $(WIDL)
$(SUBDIRS): dummy
@cd $@ && $(MAKE)
...
...
dlls/ole32/Makefile.in
View file @
07a80512
...
...
@@ -61,8 +61,18 @@ RC_BINARIES = \
drag_move.cur
\
nodrop.cur
IDL_SRCS
=
\
dcom.idl
SUBDIRS
=
tests
@MAKE_DLL_RULES@
.SUFFIXES
:
.idl .h
.idl.h
:
$(WIDL)
$(IDLFLAGS)
-b
-h
-H
$@
$<
idl
:
$(IDL_SRCS:.idl=.h)
### Dependencies:
dlls/ole32/dcom.h
View file @
07a80512
...
...
@@ -226,7 +226,7 @@ struct IRemUnknown {
const
IRemUnknownVtbl
*
lpVtbl
;
};
struct
IRemUnknownVtbl
{
ICOM_MSVTABLE_COMPAT_FIELDS
BEGIN_INTERFACE
/*** IUnknown methods ***/
HRESULT
(
STDMETHODCALLTYPE
*
QueryInterface
)(
...
...
@@ -260,8 +260,10 @@ struct IRemUnknownVtbl {
unsigned
short
cInterfaceRefs
,
REMINTERFACEREF
*
InterfaceRefs
);
END_INTERFACE
};
#ifdef COBJMACROS
/*** IUnknown methods ***/
#define IRemUnknown_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
#define IRemUnknown_AddRef(p) (p)->lpVtbl->AddRef(p)
...
...
@@ -270,6 +272,7 @@ struct IRemUnknownVtbl {
#define IRemUnknown_RemQueryInterface(p,a,b,c,d,e) (p)->lpVtbl->RemQueryInterface(p,a,b,c,d,e)
#define IRemUnknown_RemAddRef(p,a,b,c) (p)->lpVtbl->RemAddRef(p,a,b,c)
#define IRemUnknown_RemRelease(p,a,b) (p)->lpVtbl->RemRelease(p,a,b)
#endif
#endif
...
...
@@ -349,7 +352,7 @@ struct IRemUnknown2 {
const
IRemUnknown2Vtbl
*
lpVtbl
;
};
struct
IRemUnknown2Vtbl
{
ICOM_MSVTABLE_COMPAT_FIELDS
BEGIN_INTERFACE
/*** IUnknown methods ***/
HRESULT
(
STDMETHODCALLTYPE
*
QueryInterface
)(
...
...
@@ -392,8 +395,10 @@ struct IRemUnknown2Vtbl {
HRESULT
*
phr
,
MInterfacePointer
**
ppMIF
);
END_INTERFACE
};
#ifdef COBJMACROS
/*** IUnknown methods ***/
#define IRemUnknown2_QueryInterface(p,a,b) (p)->lpVtbl->QueryInterface(p,a,b)
#define IRemUnknown2_AddRef(p) (p)->lpVtbl->AddRef(p)
...
...
@@ -404,6 +409,7 @@ struct IRemUnknown2Vtbl {
#define IRemUnknown2_RemRelease(p,a,b) (p)->lpVtbl->RemRelease(p,a,b)
/*** IRemUnknown2 methods ***/
#define IRemUnknown2_RemQueryInterface2(p,a,b,c,d,e) (p)->lpVtbl->RemQueryInterface2(p,a,b,c,d,e)
#endif
#endif
...
...
include/Makefile.in
View file @
07a80512
...
...
@@ -296,8 +296,6 @@ EXTRASUBDIRS = msvcrt msvcrt/sys wine
.idl.h
:
$(WIDL)
$(IDLFLAGS)
-b
-h
-H
$@
$<
.PHONY
:
idl
idl
:
$(IDL_SRCS:.idl=.h)
install
::
...
...
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