in MacOSX10.4u.sdk OSServices.h says
#include <OSServices/OpenTransport.h> with no conditions
in MacOSX10.5u.sdk OSServices.h says
#if MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_4 #include <OSServices/OpenTransport.h> ... #endif
So, as far as OpenTransport is concerned :
targeting 10.4 and using MacOSX10.4u.sdk is OK but targeting 10.4 and using MacOSX10.5u.sdk does not support OpenTransport.
What is the reason of this ?
Thanks JP
|