PlayM4.h 262 B

1234567891011121314
  1. #ifndef _PLAYM4_H_
  2. #define _PLAYM4_H_
  3. #if defined(__APPLE__)
  4. #include"ApplePlayM4.h"
  5. #elif defined(__linux__)
  6. #include"LinuxPlayM4.h"
  7. #elif defined(ANDROID)
  8. #include"LinuxPlayM4.h"
  9. #elif defined(WIN32)
  10. #include"WindowsPlayM4.h"
  11. #endif
  12. #endif //_PLAYM4_H_