Advertisement
pastepin57

main.m

May 10th, 2015
863
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MPASM 2.69 KB | None | 0 0
  1. /*
  2.      File: main.m
  3.  Abstract: This file is included for support purposes and isn't
  4. necessary for understanding this sample.
  5.  Version: 1.2
  6.  
  7. Disclaimer: IMPORTANT:  This Apple software is supplied to you by Apple
  8. Inc. ("Apple") in consideration of your agreement to the following
  9. terms, and your use, installation, modification or redistribution of
  10. this Apple software constitutes acceptance of these terms.  If you do
  11. not agree with these terms, please do not use, install, modify or
  12. redistribute this Apple software.
  13.  
  14. In consideration of your agreement to abide by the following terms, and
  15. subject to these terms, Apple grants you a personal, non-exclusive
  16. license, under Apple's copyrights in this original Apple software (the
  17.  "Apple Software"), to use, reproduce, modify and redistribute the Apple
  18.  Software, with or without modifications, in source and/or binary forms;
  19.  provided that if you redistribute the Apple Software in its entirety and
  20.  without modifications, you must retain this notice and the following
  21.  text and disclaimers in all such redistributions of the Apple Software.
  22.  Neither the name, trademarks, service marks or logos of Apple Inc. may
  23.  be used to endorse or promote products derived from the Apple Software
  24.  without specific prior written permission from Apple.  Except as
  25.  expressly stated in this notice, no other rights or licenses, express or
  26.  implied, are granted by Apple herein, including but not limited to any
  27.  patent rights that may be infringed by your derivative works or by other
  28.  works in which the Apple Software may be incorporated.
  29.  
  30.  The Apple Software is provided by Apple on an "AS IS" basis.  APPLE
  31.  MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION
  32.  THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS
  33.  FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND
  34.  OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS.
  35.  
  36.  IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL
  37.  OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  38.  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  39.  INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION,
  40.  MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED
  41.  AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE),
  42.  STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE
  43.  POSSIBILITY OF SUCH DAMAGE.
  44.  
  45.  Copyright (C) 2013 Apple Inc. All Rights Reserved.
  46.  
  47.  */
  48.  
  49. #import <UIKit/UIKit.h>
  50.  
  51. #import "MessageComposerAppDelegate.h"
  52.  
  53. int main(int argc, char *argv[])
  54. {
  55.     @autoreleasepool {
  56.         return UIApplicationMain(argc, argv, nil, NSStringFromClass([MessageComposerAppDelegate class]));
  57.     }
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement