/*************************************************************************************************************************************/
/* */
/* 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 '$xiidd/fonction$ARG' sur 'LACT19' : */
/* */
/* Jean-Francois COLONNA (LACTAMME, 20240626121815). */
/* */
/*************************************************************************************************************************************/
/*===================================================================================================================================*/
/*************************************************************************************************************************************/
/* */
/* 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 : */
/* */
/*************************************************************************************************************************************/
#ifdef __VERSION__COMPILER_LE_GRAPHIQUE_SPIX
=define __IDpalette \
IDpalette
=define _IDpalette( \
Argument_____increment_des_niveaux \
) \
IDpalette( \
Argument_____increment_des_niveaux \
)
#define IDpalette( \
Argument_____increment_des_niveaux \
) \
_IDpalette( \
Argument_____increment_des_niveaux \
)
=define __IDopen \
IDopen
=define _IDopen( \
Argument_____nom_de_la_fenetreA \
,Argument_____dimension_de_la_fenetre \
,Argument_____coin_haut_gauche \
) \
IDopen( \
Argument_____nom_de_la_fenetreA \
,Argument_____dimension_de_la_fenetre \
,Argument_____coin_haut_gauche \
)
#define IDopen( \
Argument_____nom_de_la_fenetreA \
,Argument_____dimension_de_la_fenetre \
,Argument_____coin_haut_gauche \
) \
_IDopen( \
Argument_____nom_de_la_fenetreA \
,Argument_____dimension_de_la_fenetre \
,Argument_____coin_haut_gauche \
)
=define __IDclose \
IDclose
=define _IDclose( \
\
) \
IDclose( \
\
)
#define IDclose( \
\
) \
_IDclose( \
\
)
=define __IDdisplay \
IDdisplay
=define _IDdisplay( \
Argument_____imageA \
) \
IDdisplay( \
Argument_____imageA \
)
#define IDdisplay( \
Argument_____imageA \
) \
_IDdisplay( \
Argument_____imageA \
)
=define __IDanimation \
IDanimation
=define _IDanimation( \
Argument_____imageA \
,Argument_____nombre_de_trames \
,Argument_____temporisation_inter_trames \
,Argument_____temporisation_inter_animations \
,Argument_____nombre_de_repetitions \
,Argument_____centrage_de_l_animation \
,Argument_____mettre_un_fond \
,Argument_____fond_de_la_fenetre \
) \
IDanimation( \
Argument_____imageA \
,Argument_____nombre_de_trames \
,Argument_____temporisation_inter_trames \
,Argument_____temporisation_inter_animations \
,Argument_____nombre_de_repetitions \
,Argument_____centrage_de_l_animation \
,Argument_____mettre_un_fond \
,Argument_____fond_de_la_fenetre \
)
#define IDanimation( \
Argument_____imageA \
,Argument_____nombre_de_trames \
,Argument_____temporisation_inter_trames \
,Argument_____temporisation_inter_animations \
,Argument_____nombre_de_repetitions \
,Argument_____centrage_de_l_animation \
,Argument_____mettre_un_fond \
,Argument_____fond_de_la_fenetre \
) \
_IDanimation( \
Argument_____imageA \
,Argument_____nombre_de_trames \
,Argument_____temporisation_inter_trames \
,Argument_____temporisation_inter_animations \
,Argument_____nombre_de_repetitions \
,Argument_____centrage_de_l_animation \
,Argument_____mettre_un_fond \
,Argument_____fond_de_la_fenetre \
)
#Aifdef __VERSION__COMPILER_LE_GRAPHIQUE_SPIX
#Eifdef __VERSION__COMPILER_LE_GRAPHIQUE_SPIX