We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1cccc0 commit 8274532Copy full SHA for 8274532
test/nuget/TestRuntimeComponentEmpty/module.cpp
@@ -13,6 +13,7 @@ bool __stdcall winrt_can_unload_now() noexcept
13
}
14
15
void* __stdcall TestStaticLibrary5_get_activation_factory(std::wstring_view const& name);
16
+void* __stdcall TestStaticLibrary6_get_activation_factory(std::wstring_view const& name);
17
18
void* __stdcall winrt_get_activation_factory(std::wstring_view const& name)
19
{
@@ -21,6 +22,11 @@ void* __stdcall winrt_get_activation_factory(std::wstring_view const& name)
21
22
23
return factory;
24
25
+ factory = TestStaticLibrary6_get_activation_factory(name);
26
+ if (factory)
27
+ {
28
+ return factory;
29
+ }
30
31
return nullptr;
32
0 commit comments