Get rid of the almost empty tmarshal.h file.
This commit is contained in:
parent
e659f1e60c
commit
b8d0f4cd10
|
@ -32,8 +32,7 @@
|
||||||
#include "ole2.h"
|
#include "ole2.h"
|
||||||
#include "olectl.h"
|
#include "olectl.h"
|
||||||
#include "oleauto.h"
|
#include "oleauto.h"
|
||||||
|
#include "typelib.h"
|
||||||
#include "tmarshal.h"
|
|
||||||
|
|
||||||
#include "wine/debug.h"
|
#include "wine/debug.h"
|
||||||
|
|
||||||
|
@ -727,7 +726,7 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv)
|
||||||
return OLEAUTPS_DllGetClassObject(&CLSID_PSDispatch, iid, ppv);
|
return OLEAUTPS_DllGetClassObject(&CLSID_PSDispatch, iid, ppv);
|
||||||
}
|
}
|
||||||
if (IsEqualGUID(rclsid,&CLSID_PSOAInterface)) {
|
if (IsEqualGUID(rclsid,&CLSID_PSOAInterface)) {
|
||||||
if (S_OK==TypeLibFac_DllGetClassObject(rclsid,iid,ppv))
|
if (S_OK==TMARSHAL_DllGetClassObject(rclsid,iid,ppv))
|
||||||
return S_OK;
|
return S_OK;
|
||||||
/*FALLTHROUGH*/
|
/*FALLTHROUGH*/
|
||||||
}
|
}
|
||||||
|
|
|
@ -2305,10 +2305,9 @@ static const IPSFactoryBufferVtbl psfacbufvtbl = {
|
||||||
static const IPSFactoryBufferVtbl *lppsfac = &psfacbufvtbl;
|
static const IPSFactoryBufferVtbl *lppsfac = &psfacbufvtbl;
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* DllGetClassObject [OLE32.63]
|
* TMARSHAL_DllGetClassObject
|
||||||
*/
|
*/
|
||||||
HRESULT WINAPI
|
HRESULT TMARSHAL_DllGetClassObject(REFCLSID rclsid, REFIID iid,LPVOID *ppv)
|
||||||
TypeLibFac_DllGetClassObject(REFCLSID rclsid, REFIID iid,LPVOID *ppv)
|
|
||||||
{
|
{
|
||||||
if (IsEqualIID(iid,&IID_IPSFactoryBuffer)) {
|
if (IsEqualIID(iid,&IID_IPSFactoryBuffer)) {
|
||||||
*ppv = &lppsfac;
|
*ppv = &lppsfac;
|
||||||
|
|
|
@ -1,24 +0,0 @@
|
||||||
/*
|
|
||||||
* Copyright 2002 Marcus Meissner
|
|
||||||
*
|
|
||||||
* 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
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef TMARSHAL_H
|
|
||||||
#define TMARSHAL_H
|
|
||||||
HRESULT WINAPI
|
|
||||||
TypeLibFac_DllGetClassObject(REFCLSID rclsid, REFIID iid,LPVOID *ppv);
|
|
||||||
|
|
||||||
#endif
|
|
|
@ -597,9 +597,12 @@ WORD offset from start of block to SAFEARRAY
|
||||||
WORD typeofarray
|
WORD typeofarray
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "poppack.h"
|
||||||
|
|
||||||
extern DWORD _invoke(FARPROC func,CALLCONV callconv, int nrargs, DWORD *args);
|
extern DWORD _invoke(FARPROC func,CALLCONV callconv, int nrargs, DWORD *args);
|
||||||
extern void dump_Variant(VARIANT * pvar);
|
extern void dump_Variant(VARIANT * pvar);
|
||||||
#include "poppack.h"
|
|
||||||
|
HRESULT TMARSHAL_DllGetClassObject(REFCLSID rclsid, REFIID iid,LPVOID *ppv);
|
||||||
|
|
||||||
/*---------------------------END--------------------------------------------*/
|
/*---------------------------END--------------------------------------------*/
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue