~brandontschaefer/unity/show-desktop-fix

« back to all changes in this revision

Viewing changes to vapi/unity-const.vapi

  • Committer: Neil Jagdish Patel
  • Date: 2011-06-02 15:36:12 UTC
  • Revision ID: neil.patel@canonical.com-20110602153612-2x0m3impmjop71ee
remove more cruft

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- Mode: vala; indent-tabs-mode: nil; c-basic-offset: 2; tab-width: 2 -*- *//*
2
 
 * Copyright (C) 2009 Canonical Ltd
3
 
 *
4
 
 * This program is free software: you can redistribute it and/or modify
5
 
 * idst under the terms of the GNU General Public License version 3 as
6
 
 * published by the Free Software Foundation.
7
 
 *
8
 
 * This program is distributed in the hope that it will be useful,
9
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
 
 * GNU General Public License for more details.
12
 
 *
13
 
 * You should have received a copy of the GNU General Public License
14
 
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
 
 *
16
 
 * Authored by Gordon Allott <gord.allott@canonical.com>
17
 
 *
18
 
 */
19
 
 
20
 
namespace Unity {
21
 
  [CCode (cname = "DATADIR")]
22
 
  public static const string DATADIR;
23
 
  [CCode (cname = "PKGDATADIR")]
24
 
  public static const string PKGDATADIR;
25
 
  [CCode (cname = "INDICATORDIR")]
26
 
  public static const string INDICATORDIR;
27
 
  [CCode (cname = "INDICATORICONSDIR")]
28
 
  public static const string INDICATORICONSDIR;
29
 
 
30
 
  [CCode (cheader_filename = "unity-utils.h", cname = "LOGGER_START_PROCESS")]
31
 
  public static void LOGGER_START_PROCESS (string name);
32
 
 
33
 
  [CCode (cheader_filename = "unity-utils.h", cname = "LOGGER_END_PROCESS")]
34
 
  public static void LOGGER_END_PROCESS (string name);
35
 
 
36
 
  [CCode (cheader_filename = "unity-utils.h", cname = "START_FUNCTION")]
37
 
  public static void START_FUNCTION ();
38
 
 
39
 
  [CCode (cheader_filename = "unity-utils.h", cname = "END_FUNCTION")]
40
 
  public static void END_FUNCTION ();
41
 
}