1 /* Copyright (C) 2007 C John Klehm
3 * This library is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU Lesser General Public
5 * License as published by the Free Software Foundation; either
6 * version 2.1 of the License, or (at your option) any later version.
8 * This library is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
15 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
18 #include "inkobj_internal.h"
20 WINE_DEFAULT_DEBUG_CHANNEL(inkobj
);
22 static LONG INKOBJ_refCount
;
24 /*****************************************************
25 * DllCanUnloadNow (INKOBJ.@)
27 HRESULT WINAPI
DllCanUnloadNow(void)
29 return (INKOBJ_refCount
!= 0)? S_FALSE
: S_OK
;
32 /*****************************************************
33 * DllGetClassObject [INKOBJ.@]
35 HRESULT WINAPI
DllGetClassObject(REFCLSID rclsid
, REFIID riid
, LPVOID
* ppv
)
37 FIXME("Not implemented. Requested class was:%s\n", debugstr_guid(rclsid
));
38 return CLASS_E_CLASSNOTAVAILABLE
;
41 /*****************************************************
42 * DllRegisterServer (INKOBJ.@)
44 HRESULT WINAPI
DllRegisterServer(void)
46 FIXME("Not implemented.\n");
47 return E_UNEXPECTED
; /* unable to register */
50 /*****************************************************
51 * DllUnregisterServer (INKOBJ.@)
53 HRESULT WINAPI
DllUnregisterServer(void)
55 FIXME("Not implemented.\n");
56 return E_UNEXPECTED
; /* unable to register */