mshtml_private.tlb: Add private typelib.
Signed-off-by: Paul Gofman <pgofman@codeweavers.com> Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
eb5a50a9a5
commit
73f7873d96
|
@ -71,4 +71,5 @@ RC_SRCS = mshtml.rc
|
||||||
|
|
||||||
IDL_SRCS = \
|
IDL_SRCS = \
|
||||||
mshtml_classes.idl \
|
mshtml_classes.idl \
|
||||||
|
mshtml_private_iface.idl \
|
||||||
nsiface.idl
|
nsiface.idl
|
||||||
|
|
|
@ -74,3 +74,6 @@ REGINST REGINST mshtml.inf
|
||||||
|
|
||||||
/* @makedep: blank.htm */
|
/* @makedep: blank.htm */
|
||||||
blank.htm HTML "blank.htm"
|
blank.htm HTML "blank.htm"
|
||||||
|
|
||||||
|
/* @makedep: mshtml_private_iface.tlb */
|
||||||
|
1 TYPELIB mshtml_private_iface.tlb
|
||||||
|
|
|
@ -40,6 +40,8 @@
|
||||||
|
|
||||||
#include "nsiface.h"
|
#include "nsiface.h"
|
||||||
|
|
||||||
|
#include "mshtml_private_iface.h"
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
||||||
#define NS_ERROR_GENERATE_FAILURE(module,code) \
|
#define NS_ERROR_GENERATE_FAILURE(module,code) \
|
||||||
|
|
|
@ -0,0 +1,28 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2021 Paul Gofman 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
|
||||||
|
*/
|
||||||
|
|
||||||
|
#pragma makedep typelib
|
||||||
|
|
||||||
|
[
|
||||||
|
version(1.0),
|
||||||
|
hidden,
|
||||||
|
uuid(90de541e-380b-4530-94a9-97367fe49d8d)
|
||||||
|
]
|
||||||
|
library MSHTML_private
|
||||||
|
{
|
||||||
|
} /* library MSHTML_private */
|
Loading…
Reference in New Issue