pans
2017-08-30 71c92f101b6c8b4a678a8c3cfe2d8edbf488efa4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _PLAYM4_H_ 
#define _PLAYM4_H_
#if defined(__APPLE__)
    #include"ApplePlayM4.h"
#elif defined(__linux__)
    #include"LinuxPlayM4.h"
#elif defined(ANDROID)
    #include"LinuxPlayM4.h"
#elif defined(WIN32)
    #include"WindowsPlayM4.h"
#endif
 
 
#endif //_PLAYM4_H_