I'm trying to initialize MIP in Outlook VSTO add-in, it failed with System.EntryPointNotFoundException: 'Unable to find an entry point named '?' in DLL 'mip_dotnet'.' exception on MIP.CreateMipContext method.
MipContext mipContext = MIP.CreateMipContext(appInfo,
"mip_data",
LogLevel.Trace,
null,
null);
I wonder if there is a way to integrate MIP protection API in Outlook VSTO add-in? Thanks!