X-Git-Url: http://git.osdn.jp/view?a=blobdiff_plain;f=macosx%2Fmain.mm;h=5f73a0c6059823c6bc2417eb2c63d97178b8b115;hb=38411ed3d2e33bd434f7f255279924eba7c55e46;hp=78f659e036ff340ca4ae062cfd6670f93ed4c2b5;hpb=cdba71d1dca214142fdcca4c52f7672252752c2e;p=handbrake-jp%2Fhandbrake-jp-git.git diff --git a/macosx/main.mm b/macosx/main.mm index 78f659e0..5f73a0c6 100644 --- a/macosx/main.mm +++ b/macosx/main.mm @@ -1,12 +1,39 @@ -/* $Id: main.mm,v 1.2 2004/10/26 20:49:41 titer Exp $ +/* $Id: main.mm,v 1.3 2005/11/25 15:04:35 titer Exp $ This file is part of the HandBrake source code. - Homepage: . + Homepage: . It may be used under the terms of the GNU General Public License. */ #include +#import "hb.h" + +void SigHandler( int signal ) +{ + [NSApp terminate: NULL]; +} + +/**************************************************************************** + * hb_error_handler + * + * Change this to display a dialog box - and maybe move it somewhere else, + * this is the only place I could find that looked like C :) +****************************************************************************/ +extern "C" { +void hb_error_handler( const char *errmsg ) +{ + fprintf(stderr, "GUI ERROR dialog: %s\n", errmsg ); +} +} + +extern "C" { +extern int mm_flags; +int mm_support(); +} int main( int argc, const char ** argv ) { + mm_flags = mm_support(); + signal( SIGINT, SigHandler ); + hb_register_error_handler(&hb_error_handler); return NSApplicationMain( argc, argv ); }