mirror of https://github.com/mpv-player/mpv
16 lines
243 B
C
16 lines
243 B
C
|
#include "config.h"
|
||
|
#include "core.h"
|
||
|
|
||
|
#if HAVE_COCOA
|
||
|
#include "osdep/macosx_application.h"
|
||
|
#endif
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
#if HAVE_COCOA
|
||
|
return cocoa_main(mpv_main, argc, argv);
|
||
|
#else
|
||
|
return mpv_main(argc, argv);
|
||
|
#endif
|
||
|
}
|