/*************************************************************************************************************************************/
/* */
/* 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 '$xiidU/fonction$ARG' sur 'LACT19' : */
/* */
/* Jean-Francois COLONNA (LACTAMME, 20240626121809). */
/* */
/*************************************************************************************************************************************/
/*===================================================================================================================================*/
/*************************************************************************************************************************************/
/* */
/* 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_ULTRANET_FRAME_BUFFER
=define __IUopen \
IUopen
=define _IUopen( \
Argument_____nom_de_la_fenetreA \
,Argument_____coin_bas_droite \
) \
IUopen( \
Argument_____nom_de_la_fenetreA \
,Argument_____coin_bas_droite \
)
#define IUopen( \
Argument_____nom_de_la_fenetreA \
,Argument_____coin_bas_droite \
) \
_IUopen( \
Argument_____nom_de_la_fenetreA \
,Argument_____coin_bas_droite \
)
=define __IUclose \
IUclose
=define _IUclose( \
\
) \
IUclose( \
\
)
#define IUclose( \
\
) \
_IUclose( \
\
)
=define __IUdisplay \
IUdisplay
=define _IUdisplay( \
Argument_____imageA_ROUGE \
,Argument_____imageA_VERTE \
,Argument_____imageA_BLEUE \
,Argument_____facteur_de_zoom \
,Argument_____centrer_l_image_dans_la_fenetre \
,Argument_____translation_de_l_image_dans_la_fenetre \
) \
IUdisplay( \
Argument_____imageA_ROUGE \
,Argument_____imageA_VERTE \
,Argument_____imageA_BLEUE \
,Argument_____facteur_de_zoom \
,Argument_____centrer_l_image_dans_la_fenetre \
,Argument_____translation_de_l_image_dans_la_fenetre \
)
#define IUdisplay( \
Argument_____imageA_ROUGE \
,Argument_____imageA_VERTE \
,Argument_____imageA_BLEUE \
,Argument_____facteur_de_zoom \
,Argument_____centrer_l_image_dans_la_fenetre \
,Argument_____translation_de_l_image_dans_la_fenetre \
) \
_IUdisplay( \
Argument_____imageA_ROUGE \
,Argument_____imageA_VERTE \
,Argument_____imageA_BLEUE \
,Argument_____facteur_de_zoom \
,Argument_____centrer_l_image_dans_la_fenetre \
,Argument_____translation_de_l_image_dans_la_fenetre \
)
#Aifdef __VERSION__COMPILER_LE_GRAPHIQUE_ULTRANET_FRAME_BUFFER
#Eifdef __VERSION__COMPILER_LE_GRAPHIQUE_ULTRANET_FRAME_BUFFER