<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /></head><body style='font-size: 10pt; font-family: Arial,Helvetica,sans-serif'>
Here's an interesting one. In C I have this code:<br /><br />#define ID1 MAKE_ID('A', 'B')<br /><br />Where MAKE_ID is a macro that depending on the endianness of the target will create either AB or BA.<br /><br />How would I be able to translate this into Pascal? ID1 preferably would need to remain a constant. I tried using an inline function without success. If all fails I will need to define them all individually using an ifdef for different endian systems. But this would be my last resort.<br /><br />TIA, Darius<br />
</body></html>