Release 4.0.0-preview1-00051
[platform/core/csapi/tizenfx.git] / src / Tizen.Multimedia.Metadata / Interop / Interop.Libc.cs
1 using System;
2 using System.Runtime.InteropServices;
3
4 internal static partial class Interop
5 {
6     internal static partial class Libc
7     {
8         [DllImport(Libraries.Libc, EntryPoint = "free")]
9         public static extern void Free(IntPtr userData);
10     }
11 }