Difference between revisions of "ISOBJECT()"

From Lianjapedia
Jump to: navigation, search
 
m (Text replace - "lianjaapi.h" to "lianja_api.h")
 
(One intermediate revision by the same user not shown)
Line 7: Line 7:
 
==SYNOPSIS==
 
==SYNOPSIS==
 
<code lang="c">
 
<code lang="c">
#include "lianjaapi.h"
+
#include "lianja_api.h"
  
 
int ISOBJECT(order)
 
int ISOBJECT(order)
Line 35: Line 35:
  
 
<code lang="c">
 
<code lang="c">
#include "lianjaapi.h"
+
#include "lianja_api.h"
  
 
check_obj()
 
check_obj()

Latest revision as of 07:42, 11 April 2013

PURPOSE

Is the parameter an object

SYNONYM

None

SYNOPSIS

#include "lianja_api.h"
 
int	ISOBJECT(order)
 
<input parameters>
int	order;		/* Placement in actual parameter list		*/
 
<output parameters>
none

DESCRIPTION

The function checks if the specified parameter is an object. It returns 1 if true, or 0 if false. The order specifies the actual placements in the parameter list.

EXAMPLE

The following example returns .T. if the first parameter passed is an object, or .F. otherwise.

Example Lianja script:

m_values = NEWOBJECT('MyClass")
m_isobj=check_obj(m_values)
return

Example 'C' function:

#include "lianja_api.h"
 
check_obj()
{
    _retl(ISOBJECT(1));
}

SEE ALSO

_paro(), _reto()