> In C# I could remove security check on an C DLL call by tagging my
> function as follow:
[quoted text clipped - 5 lines]
>
> How could I avoid security stack walk?
I would assume that you would apply it to the managed function that's
calling the native function. Attributes can't really be attached to native
functions - the C# declaration really attaches the attribute to the P/Invoke
thunk that's automatically generated and not to the native function itself.
-cd
Lloyd Dupont - 26 Jul 2006 03:47 GMT
Thanks Daniel!
Mmh.. it looks like I'm stuck in a wall...
Anyway.....

Signature
Regards,
Lloyd Dupont
NovaMind development team
NovaMind Software
Mind Mapping Software
<www.nova-mind.com>
>> In C# I could remove security check on an C DLL call by tagging my
>> function as follow:
[quoted text clipped - 13 lines]
>
> -cd