gstreamer/sources/generated/Gst.Sdp/MIKEYPayloadSP.cs
Thibault Saunier 2d00f898fb Move generated files to dedicated folders named by namespace
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.
2018-03-11 21:47:35 -03:00

60 lines
1.8 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 MIKEYPayloadSP : IEquatable<MIKEYPayloadSP> {
private IntPtr _pt;
public Gst.Sdp.MIKEYPayload Pt {
get {
return _pt == IntPtr.Zero ? null : (Gst.Sdp.MIKEYPayload) GLib.Opaque.GetOpaque (_pt, typeof (Gst.Sdp.MIKEYPayload), false);
}
set {
_pt = value == null ? IntPtr.Zero : value.Handle;
}
}
public uint Policy;
public Gst.Sdp.MIKEYSecProto Proto;
private IntPtr ParamsPtr;
public IntPtr[] Params {
get { return GLib.Marshaller.StructArrayFromNullTerminatedIntPtr<IntPtr> (ParamsPtr); }
set { ParamsPtr = GLib.Marshaller.StructArrayToNullTerminatedStructArrayIntPtr<IntPtr> (value); }
}
public static Gst.Sdp.MIKEYPayloadSP Zero = new Gst.Sdp.MIKEYPayloadSP ();
public static Gst.Sdp.MIKEYPayloadSP New(IntPtr raw) {
if (raw == IntPtr.Zero)
return Gst.Sdp.MIKEYPayloadSP.Zero;
return (Gst.Sdp.MIKEYPayloadSP) Marshal.PtrToStructure (raw, typeof (Gst.Sdp.MIKEYPayloadSP));
}
public bool Equals (MIKEYPayloadSP other)
{
return true && Pt.Equals (other.Pt) && Policy.Equals (other.Policy) && Proto.Equals (other.Proto) && ParamsPtr.Equals (other.ParamsPtr);
}
public override bool Equals (object other)
{
return other is MIKEYPayloadSP && Equals ((MIKEYPayloadSP) other);
}
public override int GetHashCode ()
{
return this.GetType ().FullName.GetHashCode () ^ Pt.GetHashCode () ^ Policy.GetHashCode () ^ Proto.GetHashCode () ^ ParamsPtr.GetHashCode ();
}
private static GLib.GType GType {
get { return GLib.GType.Pointer; }
}
#endregion
}
}