'identifier' : __ptr64 not available for pointers to functions
The __ptr64 modifier can only be applied to pointers to data. It cannot be applied to pointers to functions. For example:
typedef void (__ptr64 *pf) (int); //error
This error only applies to MIPS and DEC ALPHA platforms.