mirror of
https://github.com/mpv-player/mpv
synced 2024-11-03 03:19:24 +01:00
1e7831070f
And split the Cocoa and Unix cases. Simplify the Cocoa case slightly by calling mpv_main directly, instead of passing a function pointer. Also add a comment explaining why Cocoa needs a special case at all.
7 lines
92 B
C
7 lines
92 B
C
#include "main-fn.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
return mpv_main(argc, argv);
|
|
}
|