Hi everyone,
I’m working on implementing a bot application in a Linux container that can automatically join Zoom meetings, get participants events and raw participants audio which we could then store for further processing down the line. The application is written in .NET 8 and needs to integrate with the Zoom Meeting SDK for Linux.
I’ve noticed that the Linux SDK libraries use C++ name mangling, I guess because of that it is not feasible to call these functions directly from .NET via P/Invoke, right? Does it mean that the only way is to create my own intermediate C/C++ wrapper that exposes “clean” C functions? (similar to your deprecated c# wrapper for windows).
Has anyone ever attempted to integrate the SDK with dotnet 8+ on a non Windows environment?
Many thanks in advance,
N.