Value: Add missing calling conventions
This commit is contained in:
parent
415870bb30
commit
1ce354b51f
@ -432,19 +432,19 @@ namespace Gst
|
|||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
|
|
||||||
[DllImport ("libglib-2.0-0.dll") ]
|
[DllImport ("libglib-2.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
|
||||||
private static extern byte g_date_get_day (IntPtr date);
|
private static extern byte g_date_get_day (IntPtr date);
|
||||||
|
|
||||||
[DllImport ("libglib-2.0-0.dll") ]
|
[DllImport ("libglib-2.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
|
||||||
private static extern int g_date_get_month (IntPtr date);
|
private static extern int g_date_get_month (IntPtr date);
|
||||||
|
|
||||||
[DllImport ("libglib-2.0-0.dll") ]
|
[DllImport ("libglib-2.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
|
||||||
private static extern ushort g_date_get_year (IntPtr date);
|
private static extern ushort g_date_get_year (IntPtr date);
|
||||||
|
|
||||||
[DllImport ("libglib-2.0-0.dll") ]
|
[DllImport ("libglib-2.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
|
||||||
private static extern IntPtr g_date_new_dmy (byte day, int month, ushort year);
|
private static extern IntPtr g_date_new_dmy (byte day, int month, ushort year);
|
||||||
|
|
||||||
[DllImport ("libglib-2.0-0.dll") ]
|
[DllImport ("libglib-2.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
|
||||||
private static extern void g_date_free (IntPtr date);
|
private static extern void g_date_free (IntPtr date);
|
||||||
|
|
||||||
[DllImport("libgstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
|
[DllImport("libgstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user