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
d47770e5
Commit
d47770e5
authored
Apr 29, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iexplore: Build with msvcrt.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
30ab4fe8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
Makefile.in
programs/iexplore/Makefile.in
+2
-1
main.c
programs/iexplore/main.c
+3
-4
No files found.
programs/iexplore/Makefile.in
View file @
d47770e5
MODULE
=
iexplore.exe
APPMODE
=
-mwindows
-municode
-Wl
,--large-address-aware
IMPORTS
=
ieframe
DELAYIMPORTS
=
advpack version user32
EXTRADLLFLAGS
=
-mwindows
-municode
-mno-cygwin
-Wl
,--large-address-aware
C_SRCS
=
\
main.c
...
...
programs/iexplore/main.c
View file @
d47770e5
...
...
@@ -23,7 +23,6 @@
#include <ole2.h>
#include <rpcproxy.h>
#include "wine/unicode.h"
#include "wine/debug.h"
extern
DWORD
WINAPI
IEWinMain
(
const
WCHAR
*
,
int
);
...
...
@@ -57,7 +56,7 @@ static BOOL check_native_ie(void)
if
(
VerQueryValueW
(
buf
,
translationW
,
(
void
**
)
&
translation
,
&
bytes
))
{
wsprintfW
(
file_desc_strW
,
file_desc_fmtW
,
translation
[
0
],
translation
[
1
]);
ret
=
!
VerQueryValueW
(
buf
,
file_desc_strW
,
(
void
**
)
&
file_desc
,
&
bytes
)
||
!
strstrW
(
file_desc
,
wineW
);
ret
=
!
VerQueryValueW
(
buf
,
file_desc_strW
,
(
void
**
)
&
file_desc
,
&
bytes
)
||
!
wcsstr
(
file_desc
,
wineW
);
}
HeapFree
(
GetProcessHeap
(),
0
,
buf
);
...
...
@@ -83,9 +82,9 @@ int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE prev, WCHAR *cmdline, int sho
static
const
WCHAR
unregserverW
[]
=
{
'u'
,
'n'
,
'r'
,
'e'
,
'g'
,
's'
,
'e'
,
'r'
,
'v'
,
'e'
,
'r'
,
0
};
if
(
*
cmdline
==
'-'
||
*
cmdline
==
'/'
)
{
if
(
!
strcmpiW
(
cmdline
+
1
,
regserverW
))
if
(
!
wcsicmp
(
cmdline
+
1
,
regserverW
))
return
register_iexplore
(
TRUE
);
if
(
!
strcmpiW
(
cmdline
+
1
,
unregserverW
))
if
(
!
wcsicmp
(
cmdline
+
1
,
unregserverW
))
return
register_iexplore
(
FALSE
);
}
...
...
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