20 lines
476 B
C
20 lines
476 B
C
|
//
|
||
|
// ExceptionHandler.h
|
||
|
// Created by EonaCat
|
||
|
// Copyright 2013 EonaCat. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
#import <Foundation/Foundation.h>
|
||
|
#import <MessageUI/MFMailComposeViewController.h>
|
||
|
|
||
|
#define exceptionDelegate [[UIApplication sharedApplication] delegate]
|
||
|
|
||
|
@interface ExceptionHandler : UIViewController <MFMailComposeViewControllerDelegate>
|
||
|
{
|
||
|
BOOL dismissed;
|
||
|
}
|
||
|
|
||
|
@end
|
||
|
|
||
|
void createExceptionHandler(NSString *emailAddress,NSString *BCCemailAddress);
|