blob: 78f659e036ff340ca4ae062cfd6670f93ed4c2b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* $Id: main.mm,v 1.2 2004/10/26 20:49:41 titer Exp $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.m0k.org/>.
It may be used under the terms of the GNU General Public License. */
#include <Cocoa/Cocoa.h>
int main( int argc, const char ** argv )
{
return NSApplicationMain( argc, argv );
}
|