2 * Speech API (SAPI) main file.
4 * Copyright (C) 2017 Huw Davies
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
35 #include "wine/debug.h"
37 #include "sapi_private.h"
39 WINE_DEFAULT_DEBUG_CHANNEL(sapi
);
41 static HINSTANCE hinstance
;
45 IClassFactory IClassFactory_iface
;
46 HRESULT (*create_instance
)(IUnknown
*, REFIID
, void **);
49 static inline struct class_factory
*impl_from_IClassFactory( IClassFactory
*iface
)
51 return CONTAINING_RECORD( iface
, struct class_factory
, IClassFactory_iface
);
54 static HRESULT WINAPI
class_factory_QueryInterface( IClassFactory
*iface
,
55 REFIID iid
, void **obj
)
57 if (IsEqualIID( iid
, &IID_IUnknown
) ||
58 IsEqualIID( iid
, &IID_IClassFactory
))
60 IClassFactory_AddRef( iface
);
65 FIXME( "interface %s not implemented\n", debugstr_guid( iid
) );
70 static ULONG WINAPI
class_factory_AddRef( IClassFactory
*iface
)
75 static ULONG WINAPI
class_factory_Release( IClassFactory
*iface
)
80 static HRESULT WINAPI
class_factory_CreateInstance( IClassFactory
*iface
,
81 IUnknown
*outer
, REFIID iid
,
84 struct class_factory
*This
= impl_from_IClassFactory( iface
);
86 TRACE( "%p %s %p\n", outer
, debugstr_guid( iid
), obj
);
89 return This
->create_instance( outer
, iid
, obj
);
92 static HRESULT WINAPI
class_factory_LockServer( IClassFactory
*iface
,
95 FIXME( "%d: stub!\n", lock
);
99 static const struct IClassFactoryVtbl class_factory_vtbl
=
101 class_factory_QueryInterface
,
102 class_factory_AddRef
,
103 class_factory_Release
,
104 class_factory_CreateInstance
,
105 class_factory_LockServer
108 static struct class_factory data_key_cf
= { { &class_factory_vtbl
}, data_key_create
};
109 static struct class_factory file_stream_cf
= { { &class_factory_vtbl
}, file_stream_create
};
110 static struct class_factory resource_mgr_cf
= { { &class_factory_vtbl
}, resource_manager_create
};
111 static struct class_factory speech_stream_cf
= { { &class_factory_vtbl
}, speech_stream_create
};
112 static struct class_factory speech_voice_cf
= { { &class_factory_vtbl
}, speech_voice_create
};
113 static struct class_factory token_category_cf
= { { &class_factory_vtbl
}, token_category_create
};
114 static struct class_factory token_enum_cf
= { { &class_factory_vtbl
}, token_enum_create
};
115 static struct class_factory token_cf
= { { &class_factory_vtbl
}, token_create
};
117 /******************************************************************
120 HRESULT WINAPI
DllGetClassObject( REFCLSID clsid
, REFIID iid
, void **obj
)
122 IClassFactory
*cf
= NULL
;
124 TRACE( "(%s %s %p)\n", debugstr_guid( clsid
), debugstr_guid( iid
), obj
);
126 if (IsEqualCLSID( clsid
, &CLSID_SpDataKey
))
127 cf
= &data_key_cf
.IClassFactory_iface
;
128 else if (IsEqualCLSID( clsid
, &CLSID_SpFileStream
))
129 cf
= &file_stream_cf
.IClassFactory_iface
;
130 else if (IsEqualCLSID( clsid
, &CLSID_SpObjectTokenCategory
))
131 cf
= &token_category_cf
.IClassFactory_iface
;
132 else if (IsEqualCLSID( clsid
, &CLSID_SpObjectTokenEnum
))
133 cf
= &token_enum_cf
.IClassFactory_iface
;
134 else if (IsEqualCLSID( clsid
, &CLSID_SpObjectToken
))
135 cf
= &token_cf
.IClassFactory_iface
;
136 else if (IsEqualCLSID( clsid
, &CLSID_SpResourceManager
))
137 cf
= &resource_mgr_cf
.IClassFactory_iface
;
138 else if (IsEqualCLSID( clsid
, &CLSID_SpStream
))
139 cf
= &speech_stream_cf
.IClassFactory_iface
;
140 else if (IsEqualCLSID( clsid
, &CLSID_SpVoice
))
141 cf
= &speech_voice_cf
.IClassFactory_iface
;
143 if (!cf
) return CLASS_E_CLASSNOTAVAILABLE
;
145 return IClassFactory_QueryInterface( cf
, iid
, obj
);
148 BOOL WINAPI
DllMain( HINSTANCE dll
, DWORD reason
, LPVOID reserved
)
152 case DLL_PROCESS_ATTACH
:
154 DisableThreadLibraryCalls( dll
);
160 /******************************************************************
163 HRESULT WINAPI
DllCanUnloadNow( void )
169 /***********************************************************************
172 HRESULT WINAPI
DllRegisterServer( void )
174 return __wine_register_resources( hinstance
);
177 /***********************************************************************
178 * DllUnregisterServer
180 HRESULT WINAPI
DllUnregisterServer( void )
182 return __wine_unregister_resources( hinstance
);