Sophie

Sophie

distrib > Fedora > 13 > i386 > media > updates > by-pkgid > eb1b79d0a0b6ee2b9dc1cb755109ad6e > files > 45

libsocialweb-devel-0.24.9-1.fc13.i686.rpm

#include <glib-object.h>
#include <libsocialweb/sw-web.h>

int
main (int argc, char **argv)
{
  char *file;

  if (argc != 2) {
    g_print ("$ test-download <URL>\n");
    return 1;
  }

  g_thread_init (NULL);
  g_type_init ();

  file = sw_web_download_image (argv[1]);
  g_print ("Got local file %s\n", file);

  return 0;
}