(NSArgumentInfo): Declared.

([NSMethodSignature -argumentInfoAtIndex:]): Uncommented.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@662 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1995-11-06 17:35:50 +00:00
parent 94a7d9de2d
commit e5d313834d

View file

@ -26,6 +26,15 @@
#include <Foundation/NSObject.h>
/* xxx Where does this go? */
/* Info about layout of arguments. */
typedef struct
{
int offset;
int size;
char *type;
} NSArgumentInfo;
@interface NSMethodSignature : NSObject
{
char *types;
@ -37,7 +46,7 @@
+ (NSMethodSignature*) signatureWithObjCTypes: (const char*)types;
//- (NSArgumentInfo) argumentInfoAtIndex: (unsigned)index;
- (NSArgumentInfo) argumentInfoAtIndex: (unsigned)index;
- (unsigned) frameLength;
- (BOOL) isOneway;
- (unsigned) methodReturnLength;