Release 4.0.0-preview1-00051
[platform/core/csapi/tizenfx.git] / src / Tizen.Multimedia / Interop / Interop.Libc.cs
1 using System;
2 using System.Runtime.InteropServices;
3
4 namespace Tizen.Multimedia
5 {
6     internal static partial class Interop
7     {
8         internal static partial class Libc
9         {
10             internal static class AccessMode
11             {
12                 internal const int W_OK = 0x02;
13                 internal const int R_OK = 0x04;
14             }
15
16             [DllImport(Libraries.Libc, EntryPoint = "free")]
17             public static extern void Free(IntPtr ptr);
18
19
20
21             [DllImport(Libraries.Libc, EntryPoint = "access")]
22             public static extern int Access(string path, int mode);
23         }
24     }
25 }