X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=mono%2Fmetadata%2Fsecurity-core-clr.c;h=4d4a2fdef98c95a13b2ac769b783968c56e56ad3;hb=30cddad5fb4c3d290906a6e6c33ecd8b07d8b48c;hp=4c93932b868549c9ecd9c6921d571fbf15a3dc4d;hpb=d899b02874a476290f6e8cd54d40e0eaba2ecf04;p=mono.git diff --git a/mono/metadata/security-core-clr.c b/mono/metadata/security-core-clr.c index 4c93932b868..4d4a2fdef98 100644 --- a/mono/metadata/security-core-clr.c +++ b/mono/metadata/security-core-clr.c @@ -1,5 +1,6 @@ -/* - * security-core-clr.c: CoreCLR security +/** + * \file + * CoreCLR security * * Authors: * Mark Probst @@ -27,19 +28,19 @@ static MonoSecurityCoreCLROptions security_core_clr_options = MONO_SECURITY_CORE /** * mono_security_core_clr_set_options: - * @options: the new options for the coreclr system to use + * \param options the new options for the coreclr system to use * * By default, the CoreCLRs security model forbids execution trough reflection of methods not visible from the calling code. * Even if the method being called is not in a platform assembly. For non moonlight CoreCLR users this restriction does not * make a lot of sense, since the author could have just changed the non platform assembly to allow the method to be called. * This function allows specific relaxations from the default behaviour to be set. * - * Use MONO_SECURITY_CORE_CLR_OPTIONS_DEFAULT for the default coreclr coreclr behaviour as used in Moonlight. + * Use \c MONO_SECURITY_CORE_CLR_OPTIONS_DEFAULT for the default coreclr coreclr behaviour as used in Moonlight. * - * Use MONO_SECURITY_CORE_CLR_OPTIONS_RELAX_REFLECTION to allow transparent code to execute methods and access + * Use \c MONO_SECURITY_CORE_CLR_OPTIONS_RELAX_REFLECTION to allow transparent code to execute methods and access * fields that are not in platformcode, even if those methods and fields are private or otherwise not visible to the calling code. * - * Use MONO_SECURITY_CORE_CLR_OPTIONS_RELAX_DELEGATE to allow delegates to be created that point at methods that are not in + * Use \c MONO_SECURITY_CORE_CLR_OPTIONS_RELAX_DELEGATE to allow delegates to be created that point at methods that are not in * platformcode even if those methods and fields are private or otherwise not visible to the calling code. * */