summaryrefslogtreecommitdiffstats
path: root/src/libass-test.c
diff options
context:
space:
mode:
authorMartin Lambers <marlam@marlam.de>2011-04-03 19:58:28 (GMT)
committerMartin Lambers <marlam@marlam.de>2011-04-03 19:58:28 (GMT)
commita905ff3273e553f619bd3e1615d909c57ea374fa (patch)
tree3c3d6f322dd73f9611c082d655410bfa73ae0641 /src/libass-test.c
parent2b34fc14ddeaf27de82f3fbb42c58ed9edc03a7e (diff)
downloadmxe-a905ff3273e553f619bd3e1615d909c57ea374fa.zip
mxe-a905ff3273e553f619bd3e1615d909c57ea374fa.tar.gz
mxe-a905ff3273e553f619bd3e1615d909c57ea374fa.tar.bz2
new package: libass
Diffstat (limited to 'src/libass-test.c')
-rw-r--r--src/libass-test.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/libass-test.c b/src/libass-test.c
new file mode 100644
index 0000000..3f09044
--- /dev/null
+++ b/src/libass-test.c
@@ -0,0 +1,11 @@
+/* This file is part of mingw-cross-env. */
+/* See doc/index.html for further information. */
+
+#include <ass/ass.h>
+
+int main(void)
+{
+ ASS_Library *handle = ass_library_init();
+ ass_library_done(handle);
+ return 0;
+}