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 Pretty Routes Console Command Pretty Routes for Laravel is a package to display Laravel routes in the console, but make it pretty:Using this package is simple—install it via … Read More
Laravel Console WizardLaravel Console WIzzard is a package for creating multi-step wizards with complex input inside the console. Its primary purpose is to collect dat… Read More
Simplifying Service Providers With Laravel Package Tools Laravel Package Tools is a package by Spatie that provides an opinionated base service provider you can use to streamline the reg… Read More
CLI to Check For PHP Security Vulnerabilities Enlightn Security Checker (from the folks behind Enlightn) is a command-line tool that checks if your application uses dependencies with kn… Read More
Use Basecamp’s Hotwire in Laravel Turbo Laravel is a package that gives you a set of conventions to get the most out of Hotwire in Laravel. Turbo is inspired by th… Read More
0 comments:
Post a Comment
Thanks