| 546 | [return: MarshalAs(UnmanagedType.Bool)] |
| 547 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern bool platform_read_file ([In] byte[] name_utf8, out IntPtr out_data, out UIntPtr out_size); |
| 548 | [return: MarshalAs(UnmanagedType.Bool)] |
| 549 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern bool platform_write_file ([In] byte[] name_utf8, [In] byte[] data, UIntPtr size); |
| 550 | [return: MarshalAs(UnmanagedType.Bool)] |
| 551 | [DllImport(dll, CharSet = cSet, CallingConvention = call)] public static extern bool platform_write_file_text ([In] byte[] name_utf8, [In] byte[] text_utf8); |
| 552 | |