Issue with .mm files
Posted: 17 May 2014 04:54
When trying to use a .mm with MobileVLCKit I get the following error:
https://drive.google.com/file/d/0B8YtA8 ... sp=sharing
Had to change VLCMediaListPlayer.h to:
Could this be added to main repository or am I doing something wrong ?
Thank you
https://drive.google.com/file/d/0B8YtA8 ... sp=sharing
Had to change VLCMediaListPlayer.h to:
Code: Select all
/**
* VLCRepeatMode
* (don't repeat anything, repeat one, repeat all)
*/
typedef NS_ENUM(NSInteger, VLCRepeatMode) {
VLCDoNotRepeat,
VLCRepeatCurrentItem,
VLCRepeatAllItems
};
Thank you