25 lines
797 B
C
25 lines
797 B
C
|
/*
|
||
|
* mooapp-info.h
|
||
|
*
|
||
|
* Copyright (C) 2004-2008 by Yevgen Muntyan <muntyan@tamu.edu>
|
||
|
*
|
||
|
* This library is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of the GNU Lesser General Public
|
||
|
* License version 2.1 as published by the Free Software Foundation.
|
||
|
*
|
||
|
* See COPYING file that comes with this distribution.
|
||
|
*/
|
||
|
|
||
|
#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_VERSION PACKAGE_VERSION
|
||
|
#define MOO_APP_WEBSITE "http://mooedit.sourceforge.net/"
|
||
|
#define MOO_APP_WEBSITE_LABEL "http://mooedit.sourceforge.net/"
|
||
|
|
||
|
#endif /* MOO_APP_INFO_H */
|