27 lines
920 B
C
27 lines
920 B
C
/*---------------------------------------------------------------------------*/
|
|
/* Cond.h : Definition of general Condition.*/
|
|
/* auteur : Olivier Didelot.*/
|
|
/* date : 07/10/1996*/
|
|
/* 970130 : O.C. conditions and keywords tables + beginning of Lint verification*/
|
|
/* modify : Olivier Couvreur*/
|
|
/* date : 18/02/1997 CPA_EXPORT + new functions for editor*/
|
|
/* modify : Olivier Couvreur*/
|
|
/* date : 21/02/1997 Add <= , >= conditions and some keywords for editor*/
|
|
/* modify : Olivier Couvreur*/
|
|
/* date : 03/04/1997 new button conditions*/
|
|
/*---------------------------------------------------------------------------*/
|
|
#if !defined(__CONDITION_H__)
|
|
#define __CONDITION_H__
|
|
|
|
|
|
|
|
ACP_tdxBool fn_bCanSwim(HIE_tdxHandleToSuperObject p_SuperObjPerso);
|
|
|
|
#include "specif/AiOption.h"
|
|
|
|
#if !defined(OPTIMIZED_COMMAND)
|
|
void fn_vInitConditionEntries(void);
|
|
#endif /* OPTIMIZED_COMMAND*/
|
|
|
|
#endif /* __CONDITION_H__*/
|