OSDN Git Service

Not needed! bad commit...
[handbrake-jp/handbrake-jp-git.git] / macosx / main.mm
1 /* $Id: main.mm,v 1.3 2005/11/25 15:04:35 titer Exp $
2
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. */
6
7 #include <Cocoa/Cocoa.h>
8
9 void SigHandler( int signal )
10 {
11     [NSApp terminate: NULL];
12
13
14 int main( int argc, const char ** argv )
15 {
16     signal( SIGINT, SigHandler );
17     return NSApplicationMain( argc, argv );
18 }