mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 00:11:26 +00:00
(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:
parent
94a7d9de2d
commit
e5d313834d
1 changed files with 10 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue