mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 01:15:38 +00:00
13 lines
332 B
C#
13 lines
332 B
C#
|
//
|
||
|
// VfsAsyncWriteCallback.cs: GnomeVFSAsyncWriteCallback delegate.
|
||
|
//
|
||
|
// Author:
|
||
|
// Jeroen Zwartepoorte <jeroen@xs4all.nl>
|
||
|
//
|
||
|
// (C) Copyright Jeroen Zwartepoorte 2004
|
||
|
//
|
||
|
|
||
|
namespace Gnome.Vfs {
|
||
|
public delegate void AsyncWriteCallback (Handle handle, Result result, byte[] buffer, ulong bytes_requested, ulong bytes_written);
|
||
|
}
|