00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef __MK_PatchConnection_H___
00022 #define __MK_PatchConnection_H___
00023
00024 #import <Foundation/Foundation.h>
00025
00026 @interface MKPatchConnection : NSObject
00027 {
00028 @public
00029 unsigned _toObjectOffset;
00030 unsigned _argObjectOffset;
00031 SEL _aSelector;
00032 IMP _methodImp;
00033 }
00034
00035 - initWithTargetObjectOffset: (int) toObjInt selector: (SEL) aSelector argument: (int) withObjInt;
00036
00037 @end
00038
00039 #endif