mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 07:16:55 +00:00
Value: Add missing calling conventions
This commit is contained in:
parent
415870bb30
commit
1ce354b51f
1 changed files with 5 additions and 5 deletions
|
@ -432,19 +432,19 @@ namespace Gst
|
|||
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);
|
||||
|
||||
[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);
|
||||
|
||||
[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);
|
||||
|
||||
[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);
|
||||
|
||||
[DllImport ("libglib-2.0-0.dll") ]
|
||||
[DllImport ("libglib-2.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
|
||||
private static extern void g_date_free (IntPtr date);
|
||||
|
||||
[DllImport("libgstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
|
||||
|
|
Loading…
Reference in a new issue