mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 00:11:26 +00:00
More defs for Darwin.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@10791 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
210a1351d0
commit
0154d18d92
7 changed files with 83 additions and 4 deletions
|
@ -577,6 +577,22 @@ method_types_get_next_argument (arglist_t argf, const char **type)
|
|||
}
|
||||
}
|
||||
|
||||
char*
|
||||
method_types_get_first_argument (struct objc_method* m,
|
||||
arglist_t argframe,
|
||||
const char** type)
|
||||
{
|
||||
*type = m->method_types;
|
||||
return method_get_next_argument (argframe, type);
|
||||
}
|
||||
|
||||
int
|
||||
method_types_get_sizeof_arguments (struct objc_method* mth)
|
||||
{
|
||||
const char* type = objc_skip_typespec (mth->method_types);
|
||||
return atoi (type);
|
||||
}
|
||||
|
||||
|
||||
/* mframe_dissect_call()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue