Add an implementation of iexplore.exe.
This commit is contained in:
parent
fc33d3bca8
commit
5a5b35cec7
|
@ -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
|
||||
|
|
|
@ -14,6 +14,7 @@ SUBDIRS = \
|
|||
explorer \
|
||||
hh \
|
||||
icinfo \
|
||||
iexplore \
|
||||
msiexec \
|
||||
notepad \
|
||||
progman \
|
||||
|
@ -50,6 +51,7 @@ INSTALLSUBDIRS = \
|
|||
explorer \
|
||||
hh \
|
||||
icinfo \
|
||||
iexplore \
|
||||
msiexec \
|
||||
notepad \
|
||||
progman \
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
Makefile
|
||||
iexplore
|
|
@ -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:
|
|
@ -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);
|
||||
}
|
Loading…
Reference in New Issue