You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mxe/src/librsvg-test.c

20 lines
295 B

/*
* This file is part of MXE. See LICENSE.md for licensing information.
*/
#include <librsvg/rsvg.h>
int main(int argc, char *argv[])
{
RsvgHandle* handle;
(void)argc;
(void)argv;
g_type_init();
handle = rsvg_handle_new();
g_object_unref(handle);
return 0;
}