Common to all VTables.
| 336 | /// Common to all VTables. |
| 337 | /// </summary> |
| 338 | public interface IVTable |
| 339 | { |
| 340 | uint CancelRead(int handle); |
| 341 | uint CancelWrite(int handle); |
| 342 | uint Size { get; set; } |
| 343 | uint Align { get; set; } |
| 344 | } |
| 345 | |
| 346 | public struct FutureVTable : IVTable |
| 347 | { |