Adds a scripts directory to the repository.
[HandBrake.git] / macosx / main.mm
blobd4a05b5d2adbbe58bd166b2e5e210654226c4517
1 /* $Id: main.mm,v 1.3 2005/11/25 15:04:35 titer Exp $
3    This file is part of the HandBrake source code.
4    Homepage: <http://handbrake.m0k.org/>.
5    It may be used under the terms of the GNU General Public License. */
7 #include <Cocoa/Cocoa.h>
8 #import "hb.h"
10 void SigHandler( int signal )
12     [NSApp terminate: NULL];
13
15 /****************************************************************************
16  * hb_error_handler
17  * 
18  * Change this to display a dialog box - and maybe move it somewhere else,
19  * this is the only place I could find that looked like C :)
20 ****************************************************************************/
21 extern "C" {
22 void hb_error_handler( const char *errmsg )
24     fprintf(stderr, "GUI ERROR dialog: %s\n", errmsg );
28 int main( int argc, const char ** argv )
30     signal( SIGINT, SigHandler );
31     hb_register_error_handler(&hb_error_handler);
32     return NSApplicationMain( argc, argv );