mirror of
https://github.com/reactos/reactos.git
synced 2025-01-06 06:20:13 +00:00
Add iexplore from Wine. (Disabled until shdocvw sync)
svn path=/trunk/; revision=33517
This commit is contained in:
parent
187c594643
commit
fe11b99061
4 changed files with 73 additions and 0 deletions
|
@ -25,6 +25,11 @@
|
|||
<directory name="hh">
|
||||
<xi:include href="hh/hh.rbuild" />
|
||||
</directory>
|
||||
<!--
|
||||
<directory name="iexplore">
|
||||
<xi:include href="iexplore/iexplore.rbuild" />
|
||||
</directory>
|
||||
-->
|
||||
<directory name="kbswitch">
|
||||
<xi:include href="kbswitch/kbswitch.rbuild" />
|
||||
</directory>
|
||||
|
|
13
reactos/base/applications/iexplore/iexplore.rbuild
Normal file
13
reactos/base/applications/iexplore/iexplore.rbuild
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0"?>
|
||||
<!DOCTYPE module SYSTEM "../../../tools/rbuild/project.dtd">
|
||||
<module name="iexplore" type="win32gui" installbase="system32" installname="iexplore.exe" unicode="no">
|
||||
<include base="iexplore">.</include>
|
||||
<define name="_WIN32_IE">0x0600</define>
|
||||
<define name="_WIN32_WINNT">0x0501</define>
|
||||
<library>kernel32</library>
|
||||
<library>user32</library>
|
||||
<library>gdi32</library>
|
||||
<library>shdocvw</library>
|
||||
<file>main.c</file>
|
||||
<file>version.rc</file>
|
||||
</module>
|
28
reactos/base/applications/iexplore/main.c
Normal file
28
reactos/base/applications/iexplore/main.c
Normal 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, 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);
|
||||
}
|
27
reactos/base/applications/iexplore/version.rc
Normal file
27
reactos/base/applications/iexplore/version.rc
Normal file
|
@ -0,0 +1,27 @@
|
|||
/*
|
||||
* Copyright 2003 Francois Gouget (for CodeWeavers)
|
||||
*
|
||||
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
|
||||
#define WINE_OLESELFREGISTER
|
||||
#define WINE_FILEDESCRIPTION_STR "Wine core exe"
|
||||
#define WINE_FILENAME_STR "iexplore.exe"
|
||||
#define WINE_FILEVERSION 6,0,2900,2180
|
||||
#define WINE_FILEVERSION_STR "6.0.2900.2180"
|
||||
#define WINE_PRODUCTVERSION 6,0,2900,2180
|
||||
#define WINE_PRODUCTVERSION_STR "6.0.2900.2180"
|
||||
|
||||
#include "wine/wine_common_ver.rc"
|
Loading…
Reference in a new issue