diff --git a/modules/gui/macosx/library/VLCLibraryDataTypes.h b/modules/gui/macosx/library/VLCLibraryDataTypes.h index e2a9ac77efa53acf8d4429b5393fe3bec775de1e..2b366ffee8fc3fe8f68654c135fcc28ee9e68262 100644 --- a/modules/gui/macosx/library/VLCLibraryDataTypes.h +++ b/modules/gui/macosx/library/VLCLibraryDataTypes.h @@ -120,4 +120,14 @@ NS_ASSUME_NONNULL_BEGIN @end +@interface VLCMediaLibraryEntryPoint : NSObject + +- (instancetype)initWithEntryPoint:(struct vlc_ml_entry_point_t *)p_entryPoint; + +@property (readonly) NSString *MRL; +@property (readonly) BOOL isPresent; +@property (readonly) BOOL isBanned; + +@end + NS_ASSUME_NONNULL_END diff --git a/modules/gui/macosx/library/VLCLibraryDataTypes.m b/modules/gui/macosx/library/VLCLibraryDataTypes.m index a42a2e63063b3816e352485f3a1e4e9cf87fd909..e4e20a944c3611d9393996e6b8ff6693a2d1ffa6 100644 --- a/modules/gui/macosx/library/VLCLibraryDataTypes.m +++ b/modules/gui/macosx/library/VLCLibraryDataTypes.m @@ -187,3 +187,24 @@ } @end + +@implementation VLCMediaLibraryEntryPoint + +- (instancetype)initWithEntryPoint:(struct vlc_ml_entry_point_t *)p_entryPoint +{ + self = [super init]; + if (self && p_entryPoint != NULL) { + _MRL = toNSStr(p_entryPoint->psz_mrl); + _isPresent = p_entryPoint->b_present; + _isBanned = p_entryPoint->b_banned; + } + return self; +} + +- (NSString *)description +{ + return [NSString stringWithFormat:@"%@ — MRL: %@, present: %i, banned: %i", + NSStringFromClass([self class]), _MRL, _isPresent, _isBanned]; +} + +@end