@@ -67,4 +67,11 @@
@property (readonly) NSString * version;
+/**
+ * Returns the library's changeset
+ * \return The library version example "adfee99".
+ */
+
+@property (readonly) NSString * changeset;
@end
@@ -94,6 +94,11 @@ void __catch_exception( void * e, const char * function, const char * file, int
return [NSString stringWithUTF8String:libvlc_get_version()];
}
+- (NSString *)changeset
+{
+ return [NSString stringWithUTF8String:libvlc_get_changeset()];
+}
- (void)dealloc
{
if( instance )