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:
Tim-Philipp Müller 2025-08-30 20:39:42 +01:00
parent dd483d3e88
commit 680b687639
10 changed files with 10 additions and 10 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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);

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;