Fix declaration of acc_fetch_paramtype
This commit is contained in:
parent
f752007e9c
commit
e6b394f825
|
|
@ -228,6 +228,7 @@ extern PLI_INT32 acc_fetch_size(handle obj);
|
|||
|
||||
extern PLI_INT32 acc_fetch_type(handle obj);
|
||||
extern PLI_INT32 acc_fetch_fulltype(handle obj);
|
||||
extern PLI_INT32 acc_fetch_paramtype(handle obj);
|
||||
extern PLI_INT32 acc_fetch_range(handle object, int *msb, int *lsb);
|
||||
extern const char* acc_fetch_type_str(PLI_INT32 type);
|
||||
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ const char* acc_fetch_type_str(PLI_INT32 type)
|
|||
/*
|
||||
* FIXME: What does this do? How should it be declared in acc_user.h?
|
||||
*/
|
||||
PLI_INT32 acc_fetch_paramtype(PLI_INT32 type)
|
||||
PLI_INT32 acc_fetch_paramtype(handle obj)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue