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
d5a4a663
Commit
d5a4a663
authored
Mar 11, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Make ole2disp.dll into a stand-alone 16-bit module.
parent
8a708957
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
27 additions
and
11 deletions
+27
-11
.gitignore
.gitignore
+0
-1
configure
configure
+10
-0
configure.ac
configure.ac
+2
-0
Makefile.in
dlls/Makefile.in
+0
-4
Makefile.in
dlls/ole2disp.dll16/Makefile.in
+15
-0
ole2disp.c
dlls/ole2disp.dll16/ole2disp.c
+0
-0
ole2disp.dll16.spec
dlls/ole2disp.dll16/ole2disp.dll16.spec
+0
-0
ole2disp.h
dlls/ole2disp.dll16/ole2disp.h
+0
-0
Makefile.in
dlls/oleaut32/Makefile.in
+0
-6
No files found.
.gitignore
View file @
d5a4a663
...
...
@@ -58,7 +58,6 @@ dlls/mstask/mstask_local.h
dlls/mstask/mstask_local_i.c
dlls/msvideo.dll16
dlls/msxml3/msxml3_v1.tlb
dlls/ole2disp.dll16
dlls/ole32/dcom.h
dlls/ole32/dcom_p.c
dlls/ole32/irot.h
...
...
configure
View file @
d5a4a663
...
...
@@ -3914,6 +3914,7 @@ then
enable_msacm_dll16
=
${
enable_msacm_dll16
:-
no
}
enable_ole2_dll16
=
${
enable_ole2_dll16
:-
no
}
enable_ole2conv_dll16
=
${
enable_ole2conv_dll16
:-
no
}
enable_ole2disp_dll16
=
${
enable_ole2disp_dll16
:-
no
}
enable_ole2nls_dll16
=
${
enable_ole2nls_dll16
:-
no
}
enable_ole2prox_dll16
=
${
enable_ole2prox_dll16
:-
no
}
enable_ole2thk_dll16
=
${
enable_ole2thk_dll16
:-
no
}
...
...
@@ -26507,6 +26508,14 @@ dlls/ole2conv.dll16/Makefile: dlls/ole2conv.dll16/Makefile.in dlls/Makedll.rules
ac_config_files
=
"
$ac_config_files
dlls/ole2conv.dll16/Makefile"
ALL_MAKEFILES
=
"
$ALL_MAKEFILES
\\
dlls/ole2disp.dll16/Makefile"
test
"x
$enable_ole2disp_dll16
"
!=
xno
&&
ALL_DLL_DIRS
=
"
$ALL_DLL_DIRS
\\
ole2disp.dll16"
ALL_MAKEFILE_DEPENDS
=
"
$ALL_MAKEFILE_DEPENDS
dlls/ole2disp.dll16/Makefile: dlls/ole2disp.dll16/Makefile.in dlls/Makedll.rules"
ac_config_files
=
"
$ac_config_files
dlls/ole2disp.dll16/Makefile"
ALL_MAKEFILES
=
"
$ALL_MAKEFILES
\\
dlls/ole2nls.dll16/Makefile"
test
"x
$enable_ole2nls_dll16
"
!=
xno
&&
ALL_DLL_DIRS
=
"
$ALL_DLL_DIRS
\\
ole2nls.dll16"
...
...
@@ -29256,6 +29265,7 @@ do
"dlls/odbccp32/tests/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/odbccp32/tests/Makefile" ;;
"dlls/ole2.dll16/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/ole2.dll16/Makefile" ;;
"dlls/ole2conv.dll16/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/ole2conv.dll16/Makefile" ;;
"dlls/ole2disp.dll16/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/ole2disp.dll16/Makefile" ;;
"dlls/ole2nls.dll16/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/ole2nls.dll16/Makefile" ;;
"dlls/ole2prox.dll16/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/ole2prox.dll16/Makefile" ;;
"dlls/ole2thk.dll16/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/ole2thk.dll16/Makefile" ;;
...
...
configure.ac
View file @
d5a4a663
...
...
@@ -151,6 +151,7 @@ then
enable_msacm_dll16=${enable_msacm_dll16:-no}
enable_ole2_dll16=${enable_ole2_dll16:-no}
enable_ole2conv_dll16=${enable_ole2conv_dll16:-no}
enable_ole2disp_dll16=${enable_ole2disp_dll16:-no}
enable_ole2nls_dll16=${enable_ole2nls_dll16:-no}
enable_ole2prox_dll16=${enable_ole2prox_dll16:-no}
enable_ole2thk_dll16=${enable_ole2thk_dll16:-no}
...
...
@@ -2153,6 +2154,7 @@ WINE_CONFIG_MAKEFILE([dlls/odbccp32/Makefile],[dlls/Makedll.rules],[dlls],[ALL_D
WINE_CONFIG_MAKEFILE([dlls/odbccp32/tests/Makefile],[dlls/Maketest.rules],[dlls],[ALL_TEST_DIRS],[enable_tests])
WINE_CONFIG_MAKEFILE([dlls/ole2.dll16/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
WINE_CONFIG_MAKEFILE([dlls/ole2conv.dll16/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
WINE_CONFIG_MAKEFILE([dlls/ole2disp.dll16/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
WINE_CONFIG_MAKEFILE([dlls/ole2nls.dll16/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
WINE_CONFIG_MAKEFILE([dlls/ole2prox.dll16/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
WINE_CONFIG_MAKEFILE([dlls/ole2thk.dll16/Makefile],[dlls/Makedll.rules],[dlls],[ALL_DLL_DIRS])
...
...
dlls/Makefile.in
View file @
d5a4a663
...
...
@@ -28,7 +28,6 @@ WIN16_FILES = \
krnl386.exe16
\
mmsystem.dll16
\
msvideo.dll16
\
ole2disp.dll16
\
rasapi16.dll16
\
setupx.dll16
\
shell.dll16
\
...
...
@@ -77,9 +76,6 @@ krnl386.exe16 system.drv16 toolhelp.dll16:
msvideo.dll16
:
echo
"msvfw32.dll"
>
$@
ole2disp.dll16
:
echo
"oleaut32.dll"
>
$@
rasapi16.dll16
:
echo
"rasapi32.dll"
>
$@
...
...
dlls/ole2disp.dll16/Makefile.in
0 → 100644
View file @
d5a4a663
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
ole2disp.dll16
IMPORTS
=
kernel32
EXTRADLLFLAGS
=
-Wb
,--subsystem,win16,--main-module,oleaut32.dll
SPEC_SRCS
=
ole2disp.dll16.spec
C_SRCS
=
ole2disp.c
@MAKE_DLL_RULES@
@DEPENDENCIES@
# everything below this line is overwritten by make depend
dlls/ole
aut32
/ole2disp.c
→
dlls/ole
2disp.dll16
/ole2disp.c
View file @
d5a4a663
File moved
dlls/ole
aut32/ole2disp
.spec
→
dlls/ole
2disp.dll16/ole2disp.dll16
.spec
View file @
d5a4a663
File moved
dlls/ole
aut32
/ole2disp.h
→
dlls/ole
2disp.dll16
/ole2disp.h
View file @
d5a4a663
File moved
dlls/oleaut32/Makefile.in
View file @
d5a4a663
...
...
@@ -29,12 +29,6 @@ C_SRCS = \
variant.c
\
vartype.c
C_SRCS16
=
\
ole2disp.c
SPEC_SRCS16
=
\
ole2disp.spec
RC_SRCS
=
oleaut32.rc
IDL_P_SRCS
=
\
...
...
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