gstreamer/gst/registries/registrytest.c
Wim Taymans de2a7b9ee8 Compile fix.
Original commit message from CVS:
Compile fix.
2002-05-09 17:45:49 +00:00

20 lines
255 B
C

#include <gst/gst.h>
#include "gstxmlregistry.h"
gint
main (gint argc, gchar *argv[])
{
GstRegistry *registry;
gst_init (&argc, &argv);
registry = gst_xml_registry_new ("test", "reg.xml");
gst_registry_load (registry);
return 0;
}