| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- //
- // System.Threading.Overlapped.cs
- //
- // Author:
- // Dick Porter ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- namespace System.Threading
- {
- public class Overlapped
- {
- unsafe public static void Free(NativeOverlapped *nativeOverlappedPtr) {
- // FIXME
- }
- unsafe public static Overlapped Unpack(NativeOverlapped *nativeOverlappedPtr) {
- // FIXME
- return(new Overlapped());
- }
- public Overlapped() {
- // FIXME
- }
- public Overlapped(int offsetLo, int offsetHi, int hEvent, IAsyncResult ar) {
- // FIXME
- }
- public IAsyncResult AsyncResult {
- get {
- // FIXME
- return(null);
- }
-
- set {
- }
- }
- public int EventHandle {
- get {
- // FIXME
- return(0);
- }
-
- set {
- }
- }
- public int OffsetHigh {
- get {
- // FIXME
- return(0);
- }
-
- set {
- }
- }
- public int OffsetLow {
- get {
- // FIXME
- return(0);
- }
-
- set {
- }
- }
- unsafe public NativeOverlapped *Pack(IOCompletionCallback iocb) {
- // FIXME
- return(null);
- }
-
- unsafe public NativeOverlapped *UnsafePack(IOCompletionCallback iocb) {
- // FIXME
- return(null);
- }
- }
- }
|