view src/libass-test.c @ 4464:ff4447e86c50

libpng: update to v1.6.32, add target link to config * src/libpng.mk: update version, checksum, in non natibe build create sym link to libpng-config, use MXE_DISABLE_DOCS, MXE_DISABLE_PROGS in make defs
author John D
date Tue, 29 Aug 2017 09:46:01 -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;
}