2000-02-07 17:26:56 +01:00
|
|
|
/*
|
|
|
|
* OlePro32 Stubs
|
|
|
|
*
|
|
|
|
* Copyright 1999 Corel Corporation
|
|
|
|
*
|
|
|
|
* Sean Langley
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* 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
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2000-02-07 17:26:56 +01:00
|
|
|
*/
|
|
|
|
|
2003-09-06 01:08:26 +02:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
#include "wine/debug.h"
|
2003-09-06 01:08:26 +02:00
|
|
|
#include "windef.h"
|
2000-09-26 02:00:55 +02:00
|
|
|
#include "winbase.h"
|
2003-09-09 21:39:31 +02:00
|
|
|
#include "winuser.h"
|
2000-02-29 23:02:11 +01:00
|
|
|
#include "ole2.h"
|
2000-02-07 17:26:56 +01:00
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(ole);
|
2000-03-24 21:46:04 +01:00
|
|
|
|
|
|
|
/***********************************************************************
|
2001-07-02 21:59:40 +02:00
|
|
|
* DllUnregisterServer (OLEPRO32.258)
|
2000-03-24 21:46:04 +01:00
|
|
|
*/
|
2007-08-29 21:42:28 +02:00
|
|
|
HRESULT WINAPI DllUnregisterServer(void)
|
2000-02-07 17:26:56 +01:00
|
|
|
{
|
2006-10-13 02:13:49 +02:00
|
|
|
FIXME("stub\n");
|
2000-02-07 17:26:56 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2000-03-24 21:46:04 +01:00
|
|
|
/***********************************************************************
|
2001-07-02 21:59:40 +02:00
|
|
|
* DllRegisterServer (OLEPRO32.257)
|
2000-03-24 21:46:04 +01:00
|
|
|
*/
|
2007-08-29 21:42:28 +02:00
|
|
|
HRESULT WINAPI DllRegisterServer(void)
|
2000-02-07 17:26:56 +01:00
|
|
|
{
|
2006-10-13 02:13:49 +02:00
|
|
|
FIXME("stub\n");
|
2000-02-07 17:26:56 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2000-03-24 21:46:04 +01:00
|
|
|
/***********************************************************************
|
2001-07-02 21:59:40 +02:00
|
|
|
* DllCanUnloadNow (OLEPRO32.255)
|
2000-03-24 21:46:04 +01:00
|
|
|
*/
|
2005-05-17 16:41:37 +02:00
|
|
|
HRESULT WINAPI DllCanUnloadNow(void)
|
2000-02-07 17:26:56 +01:00
|
|
|
{
|
2006-10-13 02:13:49 +02:00
|
|
|
FIXME("stub\n");
|
2000-02-07 17:26:56 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2000-03-24 21:46:04 +01:00
|
|
|
/***********************************************************************
|
2005-06-17 22:58:33 +02:00
|
|
|
* DllGetClassObject (OLEPRO32.@)
|
2000-03-24 21:46:04 +01:00
|
|
|
*/
|
2005-05-17 16:41:37 +02:00
|
|
|
HRESULT WINAPI DllGetClassObject( REFCLSID rclsid, REFIID riid, LPVOID* ppv )
|
2000-02-07 17:26:56 +01:00
|
|
|
{
|
2006-10-13 02:13:49 +02:00
|
|
|
FIXME("stub\n");
|
2000-02-07 17:26:56 +01:00
|
|
|
return S_OK;
|
|
|
|
}
|