27 lines
896 B
C
27 lines
896 B
C
/*
|
|
* mooapp-info.h
|
|
*
|
|
* Copyright (C) 2004-2010 by Yevgen Muntyan <emuntyan@sourceforge.net>
|
|
*
|
|
* This file is part of medit. medit 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.1 of the License,
|
|
* or (at your option) any later version.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with medit. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef MOO_APP_INFO_H
|
|
#define MOO_APP_INFO_H
|
|
|
|
#define MOO_APP_SHORT_NAME "medit"
|
|
#define MOO_APP_FULL_NAME "medit"
|
|
#define MOO_APP_DESCRIPTION _("medit is a text editor")
|
|
#define MOO_APP_LOGO "medit"
|
|
#define MOO_APP_WEBSITE MOO_WEBSITE
|
|
#define MOO_APP_WEBSITE_LABEL MOO_WEBSITE
|
|
|
|
#endif /* MOO_APP_INFO_H */
|