29 lines
795 B
C
29 lines
795 B
C
/*---------------------------------------------------------------------------*/
|
|
/* AIFunct.h : */
|
|
/* author : Olivier Didelot.*/
|
|
/* date : 24/01/1997*/
|
|
/*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef __AIFUNCT_H__
|
|
#define __AIFUNCT_H__
|
|
|
|
/****************************************************************************/
|
|
/* ACCESSORS */
|
|
/****************************************************************************/
|
|
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C"
|
|
{
|
|
#endif /* __cplusplus */
|
|
|
|
CPA_EXPORT char* AI_fn_pszGetActorName (HIE_tdxHandleToSuperObject hSupObj);
|
|
CPA_EXPORT char* AI_fn_pszGetFamilyName (HIE_tdxHandleToSuperObject hSupObj, char* szBuffer);
|
|
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
#endif /* __AIFUNCT_H__*/
|