00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @interface NSInvocation : NSObject
00010 {
00011 void *_frame;
00012 id _signature;
00013 id _container;
00014 unsigned int retainedArgs:1;
00015 unsigned int isInvalid:1;
00016 unsigned int signatureValid:1;
00017 unsigned int retainedRet:1;
00018 unsigned int externalArgFrame:1;
00019 unsigned int isStret:1;
00020 unsigned int unused:26;
00021 unsigned char returnValue;
00022 void *_retdata;
00023 }
00024
00025 + (void)load;
00026 + (id)invocationWithMethodSignature:(id)fp8;
00027 - (id)init;
00028 - (void)dealloc;
00029 - (void)finalize;
00030 - (id)methodSignature;
00031 - (void)retainArguments;
00032 - (BOOL)argumentsRetained;
00033 - (void)_addAttachedObject:(id)fp8;
00034 - (id)target;
00035 - (void)setTarget:(id)fp8;
00036 - (SEL)selector;
00037 - (void)setSelector:(SEL)fp8;
00038 - (void)getReturnValue:(void *)fp8;
00039 - (void)setReturnValue:(void *)fp8;
00040 - (void)getArgument:(void *)fp8 atIndex:(int)fp12;
00041 - (void)setArgument:(void *)fp8 atIndex:(int)fp12;
00042 - (void)invoke;
00043 - (void)invokeWithTarget:(id)fp8;
00044 - (id)debugDescription;
00045 - (void)_debugFrame;
00046 - (void)_debugReturn;
00047
00048 @end
00049