I'm trying to create a winrt custom audio effect using this tutorial.
#include "MyAudioEffect.g.h"
auto effectName = winrt::name_of();
auto effect = winrt::Windows::Media::Effects::AudioEffectDefinition(effectName);
// Exception thrown
// winrt::hresult_class_not_registered
// 80040154 - Class not registered
I made a MRE:
https://github.com/tom-huntington/MRE_ClassNotRegistered
/>
To create the .idl .h .cpp files for the MyAudioEffect class, I used the template
-> Add -> New Item -> Custom Control (WinUI 3)
How do I register the class? Can someone fix my MRE please?
winrt::hresult_class_not_registered - AudioEffectDefinition with custom effect
Programing Coderfunda
September 06, 2024
No comments
Related Posts:
Laravel Options PackageThe Laravel Options package from Appstract is a global database key-value options store for Laravel. This package uses a simple options database table… Read More
Laravel Favicon PackageLaravel Favicon is a package by Marcel Pociot that enables you to create dynamic favicons based on your environment settings: The package works by u… Read More
PHPUnit SpeedTrapPHPUnit Speedtrap is a package by John Kary that reports on slow-running tests in your PHPUnit test suite. This package is inspired by Ruby RSpec’s&nb… Read More
Snipe Migrations Laravel Package Snipe Migrations is a Laravel package by Dustin Fraker for “blazing fast” database migrations for tests:The package takes a snapshot of your mys… Read More
Laravel Tinker Server PackageLaravel Tinker Server is a package by Marcel Pociot that enables you to tinker with your variables in real-time while working on your Laravel app. Thi… Read More
0 comments:
Post a Comment
Thanks