Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MapDllImportAttribute.cs « minvoke - github.com/mono/mono-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6e9bf61b76198a0772c0ad3705b29ba5b3342c79 (plain)
1
2
3
4
5
6
7
8
9
10
11

using System.Runtime.InteropServices;
using System;

public class MapDllImport : Attribute {
	public MapDllImport (string dllName) {
		DllName = dllName;
	}

	public string DllName { get; private set; }
}