Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-release > by-pkgid > 6c1a1d2d0e9b9232d76ec7c9f0bced2e > files > 185

libdazzle-devel-3.32.2-1.mga7.armv7hl.rpm

#include "example-application.h"

int
main (int argc,
      char *argv[])
{
  g_autoptr(ExampleApplication) app = NULL;
  gint ret;

  app = g_object_new (EXAMPLE_TYPE_APPLICATION,
                      "application-id", "org.gnome.Example",
                      "resource-base-path", "/org/gnome/example",
                      NULL);
  ret = g_application_run (G_APPLICATION (app), argc, argv);

  return ret;
}