* gstreamer-sharp/glue/Bin.c: Newly added. Added a function to return the offset of *children. * tests/ElementTest.cs: Newly added. Added two NUnit tests for Element class - one to test creation of elements and the other to test addition and deletion of Pads from elements. git-svn-id: svn://anonsvn.mono-project.com/source/branches/abock/gstreamer-sharp@61443 e3ebcda4-bce8-0310-ba0a-eca2169e7518
11 lines
292 B
Plaintext
11 lines
292 B
Plaintext
|
|
[DllImport("gstreamersharpglue-0.10")]
|
|
private extern static IntPtr gstsharp_message_parse_error(IntPtr raw);
|
|
|
|
public void ParseError(out string error)
|
|
{
|
|
IntPtr err = gstsharp_message_parse_error(Handle);
|
|
error = GLib.Marshaller.PtrToStringGFree(err);
|
|
}
|
|
|