~ken-vandine/overlay-scrollbar/xsession

« back to all changes in this revision

Viewing changes to os/os-version.h.in

  • Committer: Andrea Cimitan
  • Date: 2012-04-27 13:49:56 UTC
  • mfrom: (343.1.10 module)
  • Revision ID: andrea.cimitan@canonical.com-20120427134956-ddwhpqx6b697ood7
Tags: 0.3.0
Port to GtkModule

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* overlay-scrollbar
2
 
 *
3
 
 * Copyright © 2011 Canonical Ltd
4
 
 *
5
 
 * This library is free software; you can redistribute it and/or
6
 
 * modify it under the terms of the GNU Lesser General Public
7
 
 * License as published by the Free Software Foundation; either
8
 
 * version 2.1 of the License, or (at your option) any later version.
9
 
 *
10
 
 * This library is distributed in the hope that it will be useful,
11
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13
 
 * Lesser General Public License for more details.
14
 
 *
15
 
 * You should have received a copy of the GNU Lesser General Public
16
 
 * License along with this library; if not, write to the
17
 
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18
 
 * Boston, MA 02110-1301 USA
19
 
 *
20
 
 * Authored by Andrea Cimitan <andrea.cimitan@canonical.com>
21
 
 */
22
 
 
23
 
#if !defined (__OS_H_INSIDE__) && !defined (OS_COMPILATION)
24
 
#error "Only <os/os.h> can be included directly."
25
 
#endif
26
 
 
27
 
#ifndef __OS_VERSION_H__
28
 
#define __OS_VERSION_H__
29
 
 
30
 
#include <glib.h>
31
 
 
32
 
G_BEGIN_DECLS
33
 
 
34
 
/* The major version of scrollbar-overlay at compile time. */
35
 
#define OS_VERSION_MAJOR (@PACKAGE_VERSION_MAJOR@)
36
 
 
37
 
/* The minor version of scrollbar-overlay at compile time. */
38
 
#define OS_VERSION_MINOR (@PACKAGE_VERSION_MINOR@)
39
 
 
40
 
/* The micro version of scrollbar-overlay at compile time. */
41
 
#define OS_VERSION_MICRO (@PACKAGE_VERSION_MICRO@)
42
 
 
43
 
/* The nano version of scrollbar-overlay at compile time, actual releases have
44
 
 * 0, Bazaar trunk check-outs have 1, pre-release versions have [2-n]. */
45
 
#define OS_VERSION_NANO (@PACKAGE_VERSION_NANO@)
46
 
 
47
 
G_END_DECLS
48
 
 
49
 
#endif /* __OS_VERSION_H__ */