Code with Doxygen Comments and TCT
[platform/core/csapi/tizenfx.git] / src / Tizen.Content.MimeType / Interop / Interop.Libc.cs
1 /// Copyright 2016 by Samsung Electronics, Inc.,
2 ///
3 /// This software is the confidential and proprietary information
4 /// of Samsung Electronics, Inc. ("Confidential Information"). You
5 /// shall not disclose such Confidential Information and shall use
6 /// it only in accordance with the terms of the license agreement
7 /// you entered into with Samsung.
8
9
10 using System;
11 using System.Runtime.InteropServices;
12
13 internal static partial class Interop
14 {
15     internal static partial class Libc
16     {
17         [DllImport(Libraries.Libc, EntryPoint = "free", CallingConvention = CallingConvention.Cdecl)]
18         internal static extern int Free(IntPtr ptr);
19     }
20 }