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