A function pointer with a huge specifier such as int (huge *xpi) (void) is changed to int (far *xpi) (void) since huge apply to data pointers, not to function pointers. Function pointers should use near or far if explicit override of model based pointer sizes is required. |