Pass -l's that are not .dll's or .a's to the linker.
[wine.git] / dlls / quartz / main.c
blob80da205b57a0e83c175940fe128146ce8e64255c
1 #include "wine/debug.h"
2 #include "winerror.h"
5 WINE_DEFAULT_DEBUG_CHANNEL(quartz);
7 DWORD dll_ref = 0;
9 /***********************************************************************
10 * DllRegisterServer (QUARTZ.@)
12 HRESULT WINAPI QUARTZ_DllRegisterServer()
14 FIXME("(): stub\n");
15 return 0;
18 /***********************************************************************
19 * DllGetClassObject (QUARTZ.@)
21 HRESULT WINAPI QUARTZ_DllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv)
23 FIXME("\n\tCLSID:\t%s,\n\tIID:\t%s\n",debugstr_guid(rclsid),debugstr_guid(iid));
24 return CLASS_E_CLASSNOTAVAILABLE;
27 /***********************************************************************
28 * DllCanUnloadNow (QUARTZ.@)
30 HRESULT WINAPI QUARTZ_DllCanUnloadNow()
32 return dll_ref != 0 ? S_FALSE : S_OK;