mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 21:01:14 +00:00
2d00f898fb
Making it cleaner and simpler to navigate and removing previous ugly and now useless hack where we were renaming files ourself to make meson happy.
46 lines
1.1 KiB
C#
46 lines
1.1 KiB
C#
// This file was generated by the Gtk# code generator.
|
|
// Any changes made will be lost if regenerated.
|
|
|
|
namespace Gst.Sdp {
|
|
|
|
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Runtime.InteropServices;
|
|
|
|
#region Autogenerated code
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public partial struct SDPKey : IEquatable<SDPKey> {
|
|
|
|
public string Type;
|
|
public string Data;
|
|
|
|
public static Gst.Sdp.SDPKey Zero = new Gst.Sdp.SDPKey ();
|
|
|
|
public static Gst.Sdp.SDPKey New(IntPtr raw) {
|
|
if (raw == IntPtr.Zero)
|
|
return Gst.Sdp.SDPKey.Zero;
|
|
return (Gst.Sdp.SDPKey) Marshal.PtrToStructure (raw, typeof (Gst.Sdp.SDPKey));
|
|
}
|
|
|
|
public bool Equals (SDPKey other)
|
|
{
|
|
return true && Type.Equals (other.Type) && Data.Equals (other.Data);
|
|
}
|
|
|
|
public override bool Equals (object other)
|
|
{
|
|
return other is SDPKey && Equals ((SDPKey) other);
|
|
}
|
|
|
|
public override int GetHashCode ()
|
|
{
|
|
return this.GetType ().FullName.GetHashCode () ^ Type.GetHashCode () ^ Data.GetHashCode ();
|
|
}
|
|
|
|
private static GLib.GType GType {
|
|
get { return GLib.GType.Pointer; }
|
|
}
|
|
#endregion
|
|
}
|
|
}
|