Finally recommitting clee's patch from r518 to allow 64-bit mp4 files that can hold...
[HandBrake.git] / macosx / main.mm
blobb07c7f1c8dfa75fa2fd806e47fba8be2e589ebbe
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>
9 void SigHandler( int signal )
11     [NSApp terminate: NULL];
12
14 int main( int argc, const char ** argv )
16     signal( SIGINT, SigHandler );
17     return NSApplicationMain( argc, argv );