annotate audacious/signals.h @ 2257:af716dc0cdb9 trunk

[svn] - do not create GtkAccelGroup anymore; use ui_manager_get_accel_group to get accelerator groups from ui_manager
author giacomo
date Thu, 04 Jan 2007 03:58:58 -0800
parents a792aaee8e8e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2156
a792aaee8e8e [svn] - new signal handling which does not block (based on concept from BMP 0.9.8 that never got released)
nenolod
parents:
diff changeset
1 /*
a792aaee8e8e [svn] - new signal handling which does not block (based on concept from BMP 0.9.8 that never got released)
nenolod
parents:
diff changeset
2 * Audacious
a792aaee8e8e [svn] - new signal handling which does not block (based on concept from BMP 0.9.8 that never got released)
nenolod
parents:
diff changeset
3 * Copyright (c) 2005-2007 Audacious development team
a792aaee8e8e [svn] - new signal handling which does not block (based on concept from BMP 0.9.8 that never got released)
nenolod
parents:
diff changeset
4 *
a792aaee8e8e [svn] - new signal handling which does not block (based on concept from BMP 0.9.8 that never got released)
nenolod
parents:
diff changeset
5 * BMP - Cross-platform multimedia player
a792aaee8e8e [svn] - new signal handling which does not block (based on concept from BMP 0.9.8 that never got released)
nenolod
parents:
diff changeset
6 * Copyright (C) 2003-2005 BMP development team.
a792aaee8e8e [svn] - new signal handling which does not block (based on concept from BMP 0.9.8 that never got released)
nenolod
parents:
diff changeset
7 *
a792aaee8e8e [svn] - new signal handling which does not block (based on concept from BMP 0.9.8 that never got released)
nenolod
parents:
diff changeset
8 * This program is free software; you can redistribute it and/or modify
a792aaee8e8e [svn] - new signal handling which does not block (based on concept from BMP 0.9.8 that never got released)
nenolod
parents:
diff changeset
9 * it under the terms of the GNU General Public License as published by
a792aaee8e8e [svn] - new signal handling which does not block (based on concept from BMP 0.9.8 that never got released)
nenolod
parents:
diff changeset
10 * the Free Software Foundation; under version 2 of the License.
a792aaee8e8e [svn] - new signal handling which does not block (based on concept from BMP 0.9.8 that never got released)
nenolod
parents:
diff changeset
11 *
a792aaee8e8e [svn] - new signal handling which does not block (based on concept from BMP 0.9.8 that never got released)
nenolod
parents:
diff changeset
12 * This program is distributed in the hope that it will be useful,
a792aaee8e8e [svn] - new signal handling which does not block (based on concept from BMP 0.9.8 that never got released)
nenolod
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
a792aaee8e8e [svn] - new signal handling which does not block (based on concept from BMP 0.9.8 that never got released)
nenolod
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
a792aaee8e8e [svn] - new signal handling which does not block (based on concept from BMP 0.9.8 that never got released)
nenolod
parents:
diff changeset
15 * GNU General Public License for more details.
a792aaee8e8e [svn] - new signal handling which does not block (based on concept from BMP 0.9.8 that never got released)
nenolod
parents:
diff changeset
16 *
a792aaee8e8e [svn] - new signal handling which does not block (based on concept from BMP 0.9.8 that never got released)
nenolod
parents:
diff changeset
17 * You should have received a copy of the GNU General Public License
a792aaee8e8e [svn] - new signal handling which does not block (based on concept from BMP 0.9.8 that never got released)
nenolod
parents:
diff changeset
18 * along with this program; if not, write to the Free Software
a792aaee8e8e [svn] - new signal handling which does not block (based on concept from BMP 0.9.8 that never got released)
nenolod
parents:
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
a792aaee8e8e [svn] - new signal handling which does not block (based on concept from BMP 0.9.8 that never got released)
nenolod
parents:
diff changeset
20 * 02110-1301, USA.
a792aaee8e8e [svn] - new signal handling which does not block (based on concept from BMP 0.9.8 that never got released)
nenolod
parents:
diff changeset
21 */
a792aaee8e8e [svn] - new signal handling which does not block (based on concept from BMP 0.9.8 that never got released)
nenolod
parents:
diff changeset
22
a792aaee8e8e [svn] - new signal handling which does not block (based on concept from BMP 0.9.8 that never got released)
nenolod
parents:
diff changeset
23 #ifndef SIGNALS_H
a792aaee8e8e [svn] - new signal handling which does not block (based on concept from BMP 0.9.8 that never got released)
nenolod
parents:
diff changeset
24 #define SIGNALS_H
a792aaee8e8e [svn] - new signal handling which does not block (based on concept from BMP 0.9.8 that never got released)
nenolod
parents:
diff changeset
25
a792aaee8e8e [svn] - new signal handling which does not block (based on concept from BMP 0.9.8 that never got released)
nenolod
parents:
diff changeset
26 void signal_handlers_init(void);
a792aaee8e8e [svn] - new signal handling which does not block (based on concept from BMP 0.9.8 that never got released)
nenolod
parents:
diff changeset
27
a792aaee8e8e [svn] - new signal handling which does not block (based on concept from BMP 0.9.8 that never got released)
nenolod
parents:
diff changeset
28 #endif