Here we go, I was on my nexus yesterday so couldnt easily grab these:
http://www.mono-project.com/Interop_with_Native_Libraries
http://www.mono-project.com/DllNotFoundException
http://www.mono-project.com/Config_DllMap
Ian
On 31 July 2013 03:33, Jonathan Pryor wrote:
> On Jul 30, 2013, at 5:3
On Jul 30, 2013, at 5:34 PM, Stifu wrote:
> I've never done that myself, but if I remember correctly, you're not supposed
> to add the ".so" part. Just do [DllImport("libshared")].
Close; you should prefer [DllImport("shared")], with one exception. On Windows,
this will try to load SHARED.DLL,
Dllimport tells the loader the library name.
A large combination of things work as library loading and shared objects
differ greatly on windows and unix.
On windows, the library could be installed in the side-by-side cache or in
the same folder as your assembly etc.
If you have a file called lib
I've never done that myself, but if I remember correctly, you're not supposed
to add the ".so" part. Just do [DllImport("libshared")]. That way, it's up
to the framework to figure out the right extension depending on the OS it
runs on.
In other words, that'd mean it can't find your file because it
Is there a reason your video source requires this technique to buffer? This
code is inefficient because:
1. It allocates a new buffer every time it reads from the source buffer.
2. It removes data from the source buffer by doing 2 more heap and block copies.
I'm pretty sure overlapping regions a
const86 - your _length value could be going negative. This might be
interpreted as a very long length buffer, hence the 2 seconds.
Bob Davies
___
Mono-list maillist - Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list
Hello,
I have now built rpm and deb packages of the latest Mono (3.2) and
MonoDevelop (4.0.10) on Open Build Service:
https://build.opensuse.org/project/show/home:tpokorra:mono
You can install it on Debian 6 and 7, Ubuntu 12.04 and 13.04, CentOS
6, Fedora 17 and 18.
If there is interest for a SUS
Write module buffering online video stream for the player. I write it as
follows:
Buffer.BlockCopy (buf, 0, _buffer, _length, length);
where:
buf-what record
_buffer - where to write
_length - buffer size
length - the length of bytes to write
Reads the bytes from buffer:
byte [] outbs = new byte
On 26 Jul 2013, at 13:48, Robert Jordan wrote:
> On 26.07.2013 14:09, jonat...@mugginsoft.com wrote:
>> // validate the Mono representatiom
>> int64_t ticks = DB_UNBOX_INT64(DBMonoObjectGetProperty(monoDateTime,
>> "Ticks"));
>> MonoString *monoString = mono_object_to_string(monoDat
On 28/07/13 01:39, Brian Vogel wrote:
I've been struggling to get a .NET 4.5 site running under Mono 3.0 .
The current sites are running on an older Cent OS 5.5 server, and I've
since decided to move to Cent OS 6.6 and rebuild the server from scratch
to eliminate all possible variables from the
10 matches
Mail list logo