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
d96e3964
Commit
d96e3964
authored
Jul 23, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make_makefiles: Explicitly list the Wine headers that should be exported.
parent
d1a5011b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
30 deletions
+9
-30
.gitignore
.gitignore
+0
-2
epm_towers.h
dlls/rpcrt4/epm_towers.h
+1
-1
Makefile.in
include/Makefile.in
+0
-2
make_makefiles
tools/make_makefiles
+8
-25
No files found.
.gitignore
View file @
d96e3964
...
...
@@ -183,8 +183,6 @@ include/unknwn.h
include/urlhist.h
include/urlmon.h
include/vmr9.h
include/wine/dcetypes.h
include/wine/epm.h
include/wine/itss.h
include/wine/svcctl.h
include/wtypes.h
...
...
dlls/rpcrt4/epm_towers.h
View file @
d96e3964
...
...
@@ -19,7 +19,7 @@
*
*/
#include "
wine/
epm.h"
#include "epm.h"
#define EPM_PROTOCOL_DNET_NSP 0x04
#define EPM_PROTOCOL_OSI_TP4 0x05
...
...
include/Makefile.in
View file @
d96e3964
...
...
@@ -69,8 +69,6 @@ IDL_H_SRCS = \
urlhist.idl
\
urlmon.idl
\
vmr9.idl
\
wine/dcetypes.idl
\
wine/epm.idl
\
wine/itss.idl
\
wine/svcctl.idl
\
wtypes.idl
\
...
...
tools/make_makefiles
View file @
d96e3964
...
...
@@ -104,30 +104,13 @@ my @ignore_srcs = (
[
'IDL_S_SRCS'
,
'\.idl'
,
'_s.c'
],
);
my
%
private_headers
=
(
"wine/irot.idl"
=>
1
,
"wine/list.h"
=>
1
,
"wine/mmsystem16.h"
=>
1
,
"wine/mscvpdb.h"
=>
1
,
"wine/port.h"
=>
1
,
"wine/pthread.h"
=>
1
,
"wine/rpcfc.h"
=>
1
,
"wine/server.h"
=>
1
,
"wine/server_protocol.h"
=>
1
,
"wine/test.h"
=>
1
,
"wine/wgl.h"
=>
1
,
"wine/winaspi.h"
=>
1
,
"wine/winbase16.h"
=>
1
,
"wine/windef16.h"
=>
1
,
"wine/wined3d_caps.h"
=>
1
,
"wine/wined3d_gl.h"
=>
1
,
"wine/wined3d_interface.h"
=>
1
,
"wine/wined3d_types.h"
=>
1
,
"wine/wingdi16.h"
=>
1
,
"wine/winnet16.h"
=>
1
,
"wine/winsock16.h"
=>
1
,
"wine/winuser16.h"
=>
1
,
"wine/wpp.h"
=>
1
my
%
exported_wine_headers
=
(
"wine/debug.h"
=>
1
,
"wine/exception.h"
=>
1
,
"wine/library.h"
=>
1
,
"wine/unicode.h"
=>
1
,
"wine/itss.idl"
=>
1
,
"wine/svcctl.idl"
=>
1
,
);
my
%
private_idl_headers
=
(
...
...
@@ -654,7 +637,7 @@ sub update_includes()
foreach
my
$incl
(
@includes
)
{
if
(
$incl
=~
/(.*)\//
)
{
$subdirs
{
$1
}
=
1
;
}
next
if
(
$
privat
e_headers
{
$incl
});
next
if
(
$
incl
=~
/^wine\//
&&
!
$exported_win
e_headers
{
$incl
});
if
(
$incl
=~
/stdole2\.idl$/
)
{
push
@tlb_srcs
,
$incl
;
}
elsif
(
$private_idl_headers
{
$incl
})
{
push
@h_srcs
,
$incl
;
}
elsif
(
$incl
=~
/\.h$/
)
{
push
@h_srcs
,
$incl
;
}
...
...
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