olepro32stubs.c 1.73 KB
Newer Older
Sean Langley's avatar
Sean Langley committed
1 2 3 4 5 6
/*
 * OlePro32 Stubs
 *
 * Copyright 1999 Corel Corporation
 *
 * Sean Langley
7 8 9 10 11 12 13 14 15 16 17 18 19
 *
 * 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
20
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
Sean Langley's avatar
Sean Langley committed
21 22
 */

23 24
#include <stdarg.h>

25
#include "wine/debug.h"
26
#include "windef.h"
27
#include "winbase.h"
28
#include "winuser.h"
29
#include "ole2.h"
Sean Langley's avatar
Sean Langley committed
30

31
WINE_DEFAULT_DEBUG_CHANNEL(ole);
32 33

/***********************************************************************
Patrik Stridvall's avatar
Patrik Stridvall committed
34
 *		DllUnregisterServer (OLEPRO32.258)
35
 */
36
HRESULT WINAPI DllUnregisterServer()
Sean Langley's avatar
Sean Langley committed
37
{
38
	FIXME("stub\n");
Sean Langley's avatar
Sean Langley committed
39 40 41
	return S_OK;
}

42
/***********************************************************************
Patrik Stridvall's avatar
Patrik Stridvall committed
43
 *		DllRegisterServer (OLEPRO32.257)
44
 */
45
HRESULT WINAPI DllRegisterServer()
Sean Langley's avatar
Sean Langley committed
46
{
47
	FIXME("stub\n");
Sean Langley's avatar
Sean Langley committed
48 49 50
	return S_OK;
}

51
/***********************************************************************
Patrik Stridvall's avatar
Patrik Stridvall committed
52
 *		DllCanUnloadNow (OLEPRO32.255)
53
 */
54
HRESULT WINAPI DllCanUnloadNow(void)
Sean Langley's avatar
Sean Langley committed
55
{
56
	FIXME("stub\n");
Sean Langley's avatar
Sean Langley committed
57 58 59
	return S_OK;
}

60
/***********************************************************************
61
 *		DllGetClassObject (OLEPRO32.@)
62
 */
63
HRESULT WINAPI DllGetClassObject( REFCLSID rclsid, REFIID riid, LPVOID* ppv )
Sean Langley's avatar
Sean Langley committed
64
{
65
	FIXME("stub\n");
Sean Langley's avatar
Sean Langley committed
66 67
	return S_OK;
}