From 74bf690697c4472fc2ea1a7d61393cffd501c939 Mon Sep 17 00:00:00 2001 From: triton Date: Sun, 16 Sep 2012 00:26:45 +0100 Subject: [PATCH] Added field to keep the native library name. --- src/Bridge/Library.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Bridge/Library.cs b/src/Bridge/Library.cs index 0c1ed491..0bf0ceae 100644 --- a/src/Bridge/Library.cs +++ b/src/Bridge/Library.cs @@ -53,11 +53,13 @@ namespace Cxxi public class Library { public string Name; + public string Native; public List Modules; - public Library(string name) + public Library(string name, string native) { Name = name; + Native = native; Modules = new List(); }