mxe/src/librsvg-test.c

20 lines
295 B
C
Raw Normal View History

/*
* This file is part of MXE. See LICENSE.md for licensing information.
*/
2010-02-16 02:18:23 +00:00
#include <librsvg/rsvg.h>
2010-05-09 22:21:01 +01:00
int main(int argc, char *argv[])
2010-02-16 02:18:23 +00:00
{
RsvgHandle* handle;
(void)argc;
(void)argv;
g_type_init();
2010-02-16 02:18:23 +00:00
handle = rsvg_handle_new();
g_object_unref(handle);
2010-02-16 02:18:23 +00:00
return 0;
}