forked from AuroraMiddleware/gtk
9e486139ca
I'll add a bunch of fixes for gcc complaining about -Wmissing-declarations after finding a bunch of cases today where I had forgotten to make functions static in the CSS code. A thorn in those patches is G_DEFINE_TYPE() which doesn't allow making the get_type() function static, so I added definitions for that function above the G_DEFINE_TYPE(). After those patches, GTK should compile without warnings when this flag is enabled.
31 lines
1022 B
C
31 lines
1022 B
C
/* GAIL - The GNOME Accessibility Implementation Library
|
|
* Copyright 2001 Sun Microsystems Inc.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef __GTK_GAIL_H__
|
|
#define __GTK_GAIL_H__
|
|
|
|
#include <glib.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
void _gtk_accessibility_shutdown (void);
|
|
void _gtk_accessibility_init (void);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GTK_GAIL_H__ */
|