You've already forked linux-packaging-mono
Imported Upstream version 6.4.0.137
Former-commit-id: 943baa9f16a098c33e129777827f3a9d20da00d6
This commit is contained in:
parent
e9207cf623
commit
ef583813eb
41
mcs/class/System.Private.CoreLib/Mono/MonoDomainSetup.cs
Normal file
41
mcs/class/System.Private.CoreLib/Mono/MonoDomainSetup.cs
Normal file
@@ -0,0 +1,41 @@
|
||||
#nullable disable
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace Mono
|
||||
{
|
||||
[StructLayout (LayoutKind.Sequential)]
|
||||
internal sealed class MonoDomainSetup
|
||||
{
|
||||
#region Sync with object-internals.h
|
||||
string application_base;
|
||||
string application_name;
|
||||
string cache_path;
|
||||
string configuration_file;
|
||||
string dynamic_base;
|
||||
string license_file;
|
||||
string private_bin_path;
|
||||
string private_bin_path_probe;
|
||||
string shadow_copy_directories;
|
||||
string shadow_copy_files;
|
||||
bool publisher_policy;
|
||||
private bool path_changed;
|
||||
private int loader_optimization;
|
||||
bool disallow_binding_redirects;
|
||||
bool disallow_code_downloads;
|
||||
|
||||
object _activationArguments;
|
||||
object domain_initializer;
|
||||
object application_trust;
|
||||
string [] domain_initializer_args;
|
||||
|
||||
bool disallow_appbase_probe;
|
||||
byte [] configuration_bytes;
|
||||
|
||||
byte [] serialized_non_primitives;
|
||||
#endregion
|
||||
|
||||
public MonoDomainSetup ()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user