22 lines
399 B
C
22 lines
399 B
C
#include <glib.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "ssb-app.h"
|
|
|
|
#define SSB_APP_NAME "ssb"
|
|
#define DEFAULT_CAP_KEY "1KHLiKZvAvjbY1ziZEHMXawbCEIM6qwjCDm3VYRan/s="
|
|
#define GETTEXT_PACKAGE "ssb-gtk"
|
|
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
SsbApp *app;
|
|
gint status;
|
|
|
|
app = ssb_app_new();
|
|
status = g_application_run(G_APPLICATION(app), argc, argv);
|
|
g_object_unref(app);
|
|
|
|
return status;
|
|
}
|