2001-07-16 Richard Hestilow <hestilow@ximian.com> * configure.in: Create Makefiles in capplets/desktop-links and capplets/default-applications. * capplets/desktop-links: Added. * capplets/default-applications: Added.
43 lines
985 B
C
43 lines
985 B
C
/* -*- MODE: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- */
|
|
|
|
typedef struct _BrowserDescription BrowserDescription;
|
|
typedef struct _EditorDescription EditorDescription;
|
|
typedef struct _HelpViewDescription HelpViewDescription;
|
|
typedef struct _TerminalDesciption TerminalDescription;
|
|
|
|
struct _EditorDescription
|
|
{
|
|
gchar *name;
|
|
gchar *executable_name;
|
|
gboolean needs_term;
|
|
gchar *execution_type;
|
|
gboolean accepts_lineno;
|
|
gboolean use_name;
|
|
};
|
|
|
|
struct _BrowserDescription
|
|
{
|
|
gchar *name;
|
|
gchar *executable_name;
|
|
gboolean needs_term;
|
|
gboolean nremote;
|
|
gboolean use_name;
|
|
};
|
|
|
|
struct _HelpViewDescription
|
|
{
|
|
gchar *name;
|
|
gchar *executable_name;
|
|
gboolean needs_term;
|
|
gboolean allows_urls;
|
|
gboolean use_name;
|
|
};
|
|
|
|
struct _TerminalDesciption
|
|
{
|
|
gchar *name;
|
|
gchar *executable_name;
|
|
gchar *exec_app;
|
|
gboolean use_name;
|
|
};
|
|
|