Added server_abort_thread to replace SYSDEPS_AbortThread.
[wine] / dlls / qcap / qcap_main.c
1 #include "wine/debug.h"
2 #include "winerror.h"
3
4
5 WINE_DEFAULT_DEBUG_CHANNEL(qcap);
6
7 /***********************************************************************
8  *      DllRegisterServer (QCAP.@)
9  */
10 HRESULT WINAPI QCAP_DllRegisterServer()
11 {
12         FIXME("(): stub\n");
13         return 0;
14 }
15
16 /***********************************************************************
17  *              DllGetClassObject (QCAP.@)
18  */
19 HRESULT WINAPI QCAP_DllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv)
20 {
21     FIXME("\n\tCLSID:\t%s,\n\tIID:\t%s\n",debugstr_guid(rclsid),debugstr_guid(iid));
22     return CLASS_E_CLASSNOTAVAILABLE;
23 }