gstreamer/tutorials/xcode iOS/Tutorial 2/GStreamerBackendDelegate.h
2016-10-09 15:24:09 +02:00

14 lines
367 B
Objective-C

#import <Foundation/Foundation.h>
@protocol GStreamerBackendDelegate <NSObject>
@optional
/* Called when the GStreamer backend has finished initializing
* and is ready to accept orders. */
-(void) gstreamerInitialized;
/* Called when the GStreamer backend wants to output some message
* to the screen. */
-(void) gstreamerSetUIMessage:(NSString *)message;
@end