<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=ISO-8859-1">
<META content="MSHTML 6.00.2600.0" name=GENERATOR></HEAD>
<BODY id=role_body style="FONT-SIZE: 10pt; COLOR: #000000; FONT-FAMILY: Arial" 
bottomMargin=7 leftMargin=7 topMargin=7 rightMargin=7><FONT id=role_document 
face=Arial color=#000000 size=2>
<DIV>Bonjour,</DIV>
<DIV>&nbsp;</DIV>
<DIV>Merci de la réponse, il est vrai que je n'ai pas été très bavard sur le 
sujet. En fait cela concernait une définition de structure. </DIV>
<DIV>&nbsp;</DIV>
<DIV>En clair j'ai écrit:</DIV>
<DIV>&nbsp;</DIV>
<DIV>typedef struct</DIV>
<DIV>{<BR>&nbsp;unsigned long int Adress;<BR>&nbsp;unsigned short int 
Index;<BR>&nbsp;struct PhysicalPageDescriptorTyp *Previous, *Next;&nbsp;<BR>} 
PhysicalPageDescriptorTyp;</DIV>
<DIV>&nbsp;</DIV>
<DIV>En fait, il fallait écrire:</DIV>
<DIV>&nbsp;</DIV>
<DIV>struct PhysicalPageDescriptorTyp<BR>{<BR>&nbsp;unsigned long int 
Adress;<BR>&nbsp;unsigned short int Index;<BR>&nbsp;struct 
PhysicalPageDescriptorTyp *Previous, *Next;&nbsp;<BR>};</DIV>
<DIV>&nbsp;</DIV>
<DIV>L'utilisation d'un type aurait marché dans le cas présent en écrivant 
cela:</DIV>
<DIV>&nbsp;</DIV>
<DIV>
<DIV>typedef struct PhysicalPageDescriptorTyp</DIV>
<DIV>{<BR>&nbsp;unsigned long int Adress;<BR>&nbsp;unsigned short int 
Index;<BR>&nbsp;struct PhysicalPageDescriptorTyp *Previous, *Next;&nbsp;<BR>} 
PhysicalPageDescriptorTyp_t;</DIV></DIV>
<DIV>&nbsp;</DIV>
<DIV>Lors de l'utilisation des macros, le compilateur me disait qu'il y avait un 
problème.</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;&nbsp;&nbsp;&nbsp;Comment se fait-il que lorsque je place le 
caractère "\" dans les macros, le code ne va pas à la ligne comme il le devrait 
?</DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;&nbsp;&nbsp;&nbsp;Ce caractère ne dit-il pas lors du traitement qu'il 
faut aller à la ligne !!!!</DIV>
<DIV><BR>&nbsp;&nbsp;&nbsp;&nbsp;Je m'en suis aperçu en réalisant un gcc xxxxx.c 
-E &gt; xxxxx.txt et en éditant son contenu. J'utilise gcc de djgpp et nasm car 
tellement habitué à la syntaxe classique et non pas à la syntaxe 
AT&amp;T.</DIV></FONT></BODY></HTML>