/*************************************************************************************************************************************/
/* */
/* D E F I N I T I O N D E S F O N C T I O N S E T D E L E U R S A R G U M E N T S : */
/* */
/* */
/* Dans ce fichier, se trouvent toutes */
/* les donnees necessaires a la validation */
/* du nombre des arguments lors de l'appel */
/* d'une fonction. */
/* */
/* */
/* Contenu : */
/* */
/* On trouvera donc ici deux types de */
/* definitions : */
/* */
/* 1 - permettant d'atteindre une fonction */
/* 'f' sans valider le nombre d'arguments, */
/* et ce en utilisant le nom '__f' : */
/* */
/* =define __f f */
/* */
/* 2 - permettant de valider le nombre */
/* d'arguments lors d'une utilisation */
/* quelconque d'une fonction 'f' : */
/* */
/* =define _f(args) f(args) */
/* #define f(args) _f(args) */
/* */
/* */
/* Author of '$xiids/fonction$ARG' sur 'LACT19' : */
/* */
/* Jean-Francois COLONNA (LACTAMME, 20240626121820). */
/* */
/*************************************************************************************************************************************/
/*===================================================================================================================================*/
/*************************************************************************************************************************************/
/* */
/* D E F I N I T I O N D E S F O N C T I O N S E T D E L E U R S A R G U M E N T S : */
/* */
/*************************************************************************************************************************************/
=define __IMC_initialisation \
IMC_initialisation
=define _IMC_initialisation( \
\
) \
IMC_initialisation( \
\
)
#define IMC_initialisation( \
\
) \
_IMC_initialisation( \
\
)
=define __IMC_erase \
IMC_erase
=define _IMC_erase( \
\
) \
IMC_erase( \
\
)
#define IMC_erase( \
\
) \
_IMC_erase( \
\
)
=define __IMC_storp \
IMC_storp
=define _IMC_storp( \
Argument_____X \
,Argument_____Y \
,Argument_____niveau \
) \
IMC_storp( \
Argument_____X \
,Argument_____Y \
,Argument_____niveau \
)
#define IMC_storp( \
Argument_____X \
,Argument_____Y \
,Argument_____niveau \
) \
_IMC_storp( \
Argument_____X \
,Argument_____Y \
,Argument_____niveau \
)
=define __IMC_display \
IMC_display
=define _IMC_display( \
Argument_____imageA \
) \
IMC_display( \
Argument_____imageA \
)
#define IMC_display( \
Argument_____imageA \
) \
_IMC_display( \
Argument_____imageA \
)