main.m 663 B

1234567891011121314151617181920
  1. /*****************************************************************************
  2. * VLC for iOS
  3. *****************************************************************************
  4. * Copyright (c) 2015 VideoLAN. All rights reserved.
  5. * $Id$
  6. *
  7. * Authors: Felix Paul Kühne <fkuehne # videolan.org>
  8. *
  9. * Refer to the COPYING file of the official project for license.
  10. *****************************************************************************/
  11. #import <UIKit/UIKit.h>
  12. #import "AppleTVAppDelegate.h"
  13. int main(int argc, char * argv[]) {
  14. @autoreleasepool {
  15. return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppleTVAppDelegate class]));
  16. }
  17. }