L
Lloyd Dupont
In C# I could remove security check on an C DLL call by tagging my function
as follow:
[System::Security::SuppressUnmanagedCodeSecurityAttribute]
[DllImport("SomeDll.dll")]
static extern void SomeMethod();
In Managed C++ I don't declare the function I just #include the headers.
How could I avoid security stack walk?
as follow:
[System::Security::SuppressUnmanagedCodeSecurityAttribute]
[DllImport("SomeDll.dll")]
static extern void SomeMethod();
In Managed C++ I don't declare the function I just #include the headers.
How could I avoid security stack walk?