view src/libass-test.c @ 4038:de0b5dfe77f6

of-nurbs: new patch to compile with win32 --enable-64 (Bug #46081) * dist-files.mk: add of-nurbs-1-fixes.patch * src/of-nurbs-1-fixes.patch: new file
author John Donoghue
date Wed, 30 Sep 2015 13:33:24 -0400
parents 99516e73b368
children
line wrap: on
line source

/*
 * This file is part of MXE.
 * See index.html for further information.
 */

#include <ass/ass.h>

int main(int argc, char *argv[])
{
    ASS_Library *handle;

    (void)argc;
    (void)argv;

    handle = ass_library_init();
    ass_library_done(handle);

    return 0;
}