MCPcopy Create free account
hub / github.com/RHVoice/RHVoice / DllGetClassObject

Function DllGetClassObject

src/sapi/main.cpp:45–59  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

43}
44
45STDAPI DllGetClassObject(REFCLSID rclsid,REFIID riid,void** ppv)
46{
47 try
48 {
49 return cls_obj_factory.create(rclsid,riid,ppv);
50 }
51 catch(const std::bad_alloc&)
52 {
53 return E_OUTOFMEMORY;
54 }
55 catch(...)
56 {
57 return E_UNEXPECTED;
58 }
59}
60
61STDAPI DllCanUnloadNow()
62{

Callers

nothing calls this directly

Calls 1

createMethod · 0.45

Tested by

no test coverage detected