mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-01 03:52:25 +00:00
Make PropertyInfo(IntPtr) ctor public
This commit is contained in:
parent
782b942492
commit
500bd3d8cc
1 changed files with 1 additions and 1 deletions
|
@ -111,7 +111,7 @@ namespace Gst {
|
|||
public IntPtr OwnerType;
|
||||
}
|
||||
|
||||
internal PropertyInfo (IntPtr pspec_ptr) {
|
||||
public PropertyInfo (IntPtr pspec_ptr) {
|
||||
GParamSpec pspec = (GParamSpec) Marshal.PtrToStructure (pspec_ptr, typeof (GParamSpec));
|
||||
IntPtr name = g_param_spec_get_name (pspec_ptr);
|
||||
IntPtr nick = g_param_spec_get_nick (pspec_ptr);
|
||||
|
|
Loading…
Reference in a new issue