2024-10-06 11:21:53 +00:00
|
|
|
int main (string[] args) {
|
|
|
|
Intl.bindtextdomain (Config.GETTEXT_PACKAGE, Config.LOCALEDIR);
|
|
|
|
Intl.bind_textdomain_codeset (Config.GETTEXT_PACKAGE, "UTF-8");
|
|
|
|
Intl.textdomain (Config.GETTEXT_PACKAGE);
|
|
|
|
|
2024-10-10 20:04:55 +00:00
|
|
|
Gst.init (ref args);
|
|
|
|
|
2024-10-06 11:21:53 +00:00
|
|
|
var app = new Wavelet.Application ();
|
|
|
|
return app.run (args);
|
|
|
|
}
|