Add an implementation of iexplore.exe.

This commit is contained in:
Mike McCormack 2006-04-04 23:46:10 +09:00 committed by Alexandre Julliard
parent fc33d3bca8
commit 5a5b35cec7
6 changed files with 49 additions and 1 deletions

3
configure vendored

File diff suppressed because one or more lines are too long

View File

@ -1701,6 +1701,7 @@ programs/expand/Makefile
programs/explorer/Makefile
programs/hh/Makefile
programs/icinfo/Makefile
programs/iexplore/Makefile
programs/msiexec/Makefile
programs/notepad/Makefile
programs/progman/Makefile

View File

@ -14,6 +14,7 @@ SUBDIRS = \
explorer \
hh \
icinfo \
iexplore \
msiexec \
notepad \
progman \
@ -50,6 +51,7 @@ INSTALLSUBDIRS = \
explorer \
hh \
icinfo \
iexplore \
msiexec \
notepad \
progman \

2
programs/iexplore/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
Makefile
iexplore

View File

@ -0,0 +1,14 @@
TOPSRCDIR = @top_srcdir@
TOPOBJDIR = ../..
SRCDIR = @srcdir@
VPATH = @srcdir@
MODULE = iexplore.exe
APPMODE = -mwindows
IMPORTS = shdocvw user32 gdi32 kernel32
C_SRCS = \
main.c
@MAKE_PROG_RULES@
### Dependencies:

28
programs/iexplore/main.c Normal file
View File

@ -0,0 +1,28 @@
/*
* Internet Explorer wrapper
*
* Copyright 2006 Mike McCormack
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <windows.h>
extern DWORD WINAPI IEWinMain(LPSTR, int);
int PASCAL WinMain (HINSTANCE hInstance, HINSTANCE prev, LPSTR cmdline, int show)
{
return IEWinMain(cmdline, show);
}