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
d8cc1dcc
Commit
d8cc1dcc
authored
Nov 02, 2015
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Add makedep pragmas in all IDL source files.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
9b9b0dce
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
19 additions
and
0 deletions
+19
-0
fil_data.idl
dlls/dxdiagn/fil_data.idl
+2
-0
nsiface.idl
dlls/mshtml/nsiface.idl
+2
-0
xmlparser.idl
dlls/msxml3/tests/xmlparser.idl
+2
-0
fil_data.idl
dlls/quartz/fil_data.idl
+2
-0
fil_data.idl
dlls/quartz/tests/fil_data.idl
+2
-0
scrrun.idl
dlls/scrrun/tests/scrrun.idl
+3
-0
vbsregexp55.idl
dlls/vbscript/tests/vbsregexp55.idl
+2
-0
wshom.idl
dlls/wshom.ocx/tests/wshom.idl
+2
-0
make_makefiles
tools/make_makefiles
+2
-0
No files found.
dlls/dxdiagn/fil_data.idl
View file @
d8cc1dcc
...
...
@@ -16,6 +16,8 @@
*
Foundation
,
Inc
.
,
51
Franklin
St
,
Fifth
Floor
,
Boston
,
MA
02110
-
1301
,
USA
*/
#
pragma
makedep
header
import
"objidl.idl"
;
import
"strmif.idl"
;
import
"unknwn.idl"
;
...
...
dlls/mshtml/nsiface.idl
View file @
d8cc1dcc
...
...
@@ -23,6 +23,8 @@
*
compatible
with
XPCOM
,
usable
in
C
code
.
*/
#
pragma
makedep
header
cpp_quote
(
"#define GECKO_VERSION \"
2.40
\
""
)
cpp_quote
(
"#define GECKO_VERSION_STRING \"
Wine
Gecko
\
" GECKO_VERSION"
)
...
...
dlls/msxml3/tests/xmlparser.idl
View file @
d8cc1dcc
...
...
@@ -16,6 +16,8 @@
*
Foundation
,
Inc
.
,
51
Franklin
St
,
Fifth
Floor
,
Boston
,
MA
02110
-
1301
,
USA
*/
#
pragma
makedep
header
import
"unknwn.idl"
;
import
"objidl.idl"
;
import
"oaidl.idl"
;
...
...
dlls/quartz/fil_data.idl
View file @
d8cc1dcc
...
...
@@ -16,6 +16,8 @@
*
Foundation
,
Inc
.
,
51
Franklin
St
,
Fifth
Floor
,
Boston
,
MA
02110
-
1301
,
USA
*/
#
pragma
makedep
header
import
"objidl.idl"
;
import
"strmif.idl"
;
import
"unknwn.idl"
;
...
...
dlls/quartz/tests/fil_data.idl
View file @
d8cc1dcc
...
...
@@ -16,6 +16,8 @@
*
Foundation
,
Inc
.
,
51
Franklin
St
,
Fifth
Floor
,
Boston
,
MA
02110
-
1301
,
USA
*/
#
pragma
makedep
header
import
"objidl.idl"
;
import
"strmif.idl"
;
import
"unknwn.idl"
;
...
...
dlls/scrrun/tests/scrrun.idl
View file @
d8cc1dcc
...
...
@@ -15,6 +15,9 @@
*
License
along
with
this
library
; if not, write to the Free Software
*
Foundation
,
Inc
.
,
51
Franklin
St
,
Fifth
Floor
,
Boston
,
MA
02110
-
1301
,
USA
*/
#
pragma
makedep
header
import
"unknwn.idl"
;
import
"objidl.idl"
;
import
"oaidl.idl"
;
...
...
dlls/vbscript/tests/vbsregexp55.idl
View file @
d8cc1dcc
...
...
@@ -16,6 +16,8 @@
*
Foundation
,
Inc
.
,
51
Franklin
St
,
Fifth
Floor
,
Boston
,
MA
02110
-
1301
,
USA
*/
#
pragma
makedep
header
import
"oaidl.idl"
;
#
include
"vbscript_defs.h"
...
...
dlls/wshom.ocx/tests/wshom.idl
View file @
d8cc1dcc
...
...
@@ -16,6 +16,8 @@
*
Foundation
,
Inc
.
,
51
Franklin
St
,
Fifth
Floor
,
Boston
,
MA
02110
-
1301
,
USA
*/
#
pragma
makedep
header
import
"oaidl.idl"
;
cpp_quote
(
"#undef ExpandEnvironmentStrings"
)
...
...
tools/make_makefiles
View file @
d8cc1dcc
...
...
@@ -415,6 +415,8 @@ sub assign_sources_to_makefiles(@)
}
elsif
(
$name
=~
/\.idl$/
)
{
my
%
flags
=
get_makedep_flags
(
$file
);
die
"no makedep flags specified in $file"
unless
%
flags
;
push
@
{
$
{
$make
}{
"=IDL_SRCS"
}},
$name
;
$
{
$
{
$make
}{
"=flags"
}}{
"clean"
}
=
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