~profzoom/ubuntu/quantal/wmaker/bug-1079925

« back to all changes in this revision

Viewing changes to WINGs/wconfig.h

  • Committer: Bazaar Package Importer
  • Author(s): Marcelo E. Magallon
  • Date: 2004-11-10 14:05:30 UTC
  • Revision ID: james.westby@ubuntu.com-20041110140530-qpd66b5lm38x7apk
Tags: upstream-0.91.0
ImportĀ upstreamĀ versionĀ 0.91.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
 
 
3
#ifndef WINGS_CONFIG_H_
 
4
#define WINGS_CONFIG_H_
 
5
 
 
6
#include "../src/config.h"
 
7
 
 
8
#if defined(HAVE_LIBINTL_H) && defined(I18N)
 
9
# include <libintl.h>
 
10
# define _(text) dgettext("WINGs", text)
 
11
#else
 
12
# define _(text) (text)
 
13
#endif
 
14
 
 
15
#if defined(__GNUC__) && !defined(__STRICT_ANSI__)
 
16
# define INLINE inline
 
17
#else
 
18
# define INLINE
 
19
#endif
 
20
 
 
21
 
 
22
#endif /* WINGS_CONFIG_H_ */
 
23