blob: 342d1d55f9dbaffb2d5fd4e6a648e496c4ef9c91 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <gdk/gdk.h>
#include <gtk/gtk.h>
#include <glade/glade.h>
long CFGopen()
{
return 0;
}
int main( int argc, char *argv[] )
{
#ifdef ENABLE_NLS
setlocale( LC_ALL, "" );
bindtextdomain( GETTEXT_PACKAGE, LOCALE_DIR );
bind_textdomain_codeset( GETTEXT_PACKAGE, "UTF-8" );
textdomain( GETTEXT_PACKAGE );
#endif
gtk_set_locale();
gtk_init( &argc, &argv );
if( !strcmp(argv[1], "open") )
{
return CFGopen();
}
return 0;
}
|