17 lines
281 B
C
17 lines
281 B
C
#include "app.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
int main(void) {
|
|
App app;
|
|
|
|
if (app_init(&app) != 0) {
|
|
fprintf(stderr, "Failed to start Passport-C Media Player.\n");
|
|
app_destroy(&app);
|
|
return 1;
|
|
}
|
|
|
|
app_run(&app);
|
|
app_destroy(&app);
|
|
return 0;
|
|
}
|