csharp: add trailing spaces to match bindings generator generated files
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9623>
This commit is contained in:
parent
dd483d3e88
commit
680b687639
@ -79,7 +79,7 @@ namespace Gst {
|
||||
[DllImport("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
|
||||
static extern bool gst_buffer_list_is_writable(IntPtr raw);
|
||||
|
||||
public bool IsWritable {
|
||||
public bool IsWritable {
|
||||
get {
|
||||
bool raw_ret = gst_buffer_list_is_writable(Handle);
|
||||
bool ret = raw_ret;
|
||||
|
@ -269,7 +269,7 @@ namespace Gst {
|
||||
[DllImport("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
|
||||
static extern bool gst_caps_is_writable(IntPtr raw);
|
||||
|
||||
public new bool IsWritable {
|
||||
public new bool IsWritable {
|
||||
get {
|
||||
bool raw_ret = gst_caps_is_writable(Handle);
|
||||
bool ret = raw_ret;
|
||||
|
@ -106,7 +106,7 @@ namespace Gst {
|
||||
[DllImport("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
|
||||
static extern bool gst_context_is_writable(IntPtr raw);
|
||||
|
||||
public bool IsWritable {
|
||||
public bool IsWritable {
|
||||
get {
|
||||
IntPtr this_as_native = System.Runtime.InteropServices.Marshal.AllocHGlobal (System.Runtime.InteropServices.Marshal.SizeOf (this));
|
||||
System.Runtime.InteropServices.Marshal.StructureToPtr (this, this_as_native, false);
|
||||
|
@ -130,7 +130,7 @@ namespace Gst {
|
||||
[DllImport("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
|
||||
static extern bool gst_event_is_writable(IntPtr raw);
|
||||
|
||||
public new bool IsWritable {
|
||||
public new bool IsWritable {
|
||||
get {
|
||||
bool raw_ret = gst_event_is_writable(Handle);
|
||||
bool ret = raw_ret;
|
||||
|
@ -159,7 +159,7 @@ namespace Gst {
|
||||
[DllImport("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
|
||||
static extern bool gst_memory_is_writable(IntPtr raw);
|
||||
|
||||
public new bool IsWritable {
|
||||
public new bool IsWritable {
|
||||
get {
|
||||
bool raw_ret = gst_memory_is_writable(Handle);
|
||||
bool ret = raw_ret;
|
||||
|
@ -153,7 +153,7 @@ namespace Gst {
|
||||
[DllImport("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
|
||||
static extern bool gst_message_is_writable(IntPtr raw);
|
||||
|
||||
public new bool IsWritable {
|
||||
public new bool IsWritable {
|
||||
get {
|
||||
bool raw_ret = gst_message_is_writable(Handle);
|
||||
bool ret = raw_ret;
|
||||
|
@ -184,7 +184,7 @@ namespace Gst {
|
||||
[DllImport("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
|
||||
static extern bool gst_query_is_writable(IntPtr raw);
|
||||
|
||||
public new bool IsWritable {
|
||||
public new bool IsWritable {
|
||||
get {
|
||||
bool raw_ret = gst_query_is_writable(Handle);
|
||||
bool ret = raw_ret;
|
||||
|
@ -106,7 +106,7 @@ namespace Gst {
|
||||
[DllImport("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
|
||||
static extern bool gst_sample_is_writable(IntPtr raw);
|
||||
|
||||
public new bool IsWritable {
|
||||
public new bool IsWritable {
|
||||
get {
|
||||
bool raw_ret = gst_sample_is_writable(Handle);
|
||||
bool ret = raw_ret;
|
||||
|
@ -633,7 +633,7 @@ namespace Gst {
|
||||
[DllImport("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
|
||||
static extern bool gst_structure_is_writable(IntPtr raw);
|
||||
|
||||
public bool IsWritable {
|
||||
public bool IsWritable {
|
||||
get {
|
||||
bool raw_ret = gst_structure_is_writable(Handle);
|
||||
bool ret = raw_ret;
|
||||
|
@ -399,7 +399,7 @@ namespace Gst {
|
||||
[DllImport("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
|
||||
static extern bool gst_tag_list_is_writable(IntPtr raw);
|
||||
|
||||
public new bool IsWritable {
|
||||
public new bool IsWritable {
|
||||
get {
|
||||
bool raw_ret = gst_tag_list_is_writable(Handle);
|
||||
bool ret = raw_ret;
|
||||
|
Loading…
x
Reference in New Issue
Block a user