diff options
author | Dan Winship <danw@gnome.org> | 2011-03-05 19:29:12 -0500 |
---|---|---|
committer | Dan Winship <danw@gnome.org> | 2011-03-07 18:19:53 -0500 |
commit | c84da3ce1babdf9620179aa8f75a515428169e5b (patch) | |
tree | 1c7efb8b6e3bf7c6f7ac6c88f6133ab6fdc0b1d0 /src/meta/main.h | |
parent | bb50f65532f8f513d483436de88b964f6ac0a343 (diff) | |
download | mutter-c84da3ce1babdf9620179aa8f75a515428169e5b.tar.gz |
Move the installed includes to a subdir
If mutter is going to be a "real" library, then it should install its
includes so that users can do
#include <meta/display.h>
rather than
#include <display.h>
So rename the includedir accordingly, move src/include to src/meta,
and fix up all internal references.
There were a handful of header files in src/include that were not
installed; this appears to have been part of a plan to keep core/,
ui/, and compositor/ from looking at each others' private includes,
but that wasn't really working anyway. So move all non-installed
headers back into core/ or ui/.
https://bugzilla.gnome.org/show_bug.cgi?id=643959
Diffstat (limited to 'src/meta/main.h')
-rw-r--r-- | src/meta/main.h | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/meta/main.h b/src/meta/main.h new file mode 100644 index 000000000..23beebca3 --- /dev/null +++ b/src/meta/main.h @@ -0,0 +1,45 @@ +/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */ + +/* Mutter main */ + +/* + * Copyright (C) 2001 Havoc Pennington + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License as + * published by the Free Software Foundation; either version 2 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA + * 02111-1307, USA. + */ + +#ifndef META_MAIN_H +#define META_MAIN_H + +#include <glib.h> + +GOptionContext *meta_get_option_context (void); +void meta_init (void); +int meta_run (void); + +typedef enum +{ + META_EXIT_SUCCESS, + META_EXIT_ERROR +} MetaExitCode; + +/* exit immediately */ +void meta_exit (MetaExitCode code); + +/* g_main_loop_quit() then fall out of main() */ +void meta_quit (MetaExitCode code); + +#endif |