Is there a way to determine if a Windows CE operating system is targeted against ARMV4 or ARMV4I or ARMV4T.
I am aware of the IsProcessorFeaturePresent() API call on coredll however as far as I can tell, it only allows you to determine the presence of the thumb instruction set.
What I really want to detect is if the O/S is built with interworking (the I in ARMV4I) - without making assumptions. Using PF_ARM_THUMB will not distinguish between ARMV4T and ARMV4I.
Thanks!