mxe/src/libass-test.c

19 lines
275 B
C
Raw Permalink Normal View History

/*
* This file is part of MXE. See LICENSE.md for licensing information.
*/
2011-04-03 20:58:28 +01:00
#include <ass/ass.h>
int main(int argc, char *argv[])
2011-04-03 20:58:28 +01:00
{
ASS_Library *handle;
(void)argc;
(void)argv;
handle = ass_library_init();
2011-04-03 20:58:28 +01:00
ass_library_done(handle);
2011-04-03 20:58:28 +01:00
return 0;
}