~ubuntu-branches/ubuntu/saucy/gjs/saucy-proposed

« back to all changes in this revision

Viewing changes to modules/format.h

  • Committer: Package Import Robot
  • Author(s): Emilio Pozuelo Monfort
  • Date: 2013-03-28 03:08:20 UTC
  • mfrom: (1.3.19 experimental)
  • Revision ID: package-import@ubuntu.com-20130328030820-ci0s4uz3dssf0uip
Tags: 1.36.0-1
* New upstream release.
  + debian/control.in:
    - Update build dependencies.
  + debian/libgjs0c.install:
    - Stop installing the modules, they are built into libgjs now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- mode: C; c-basic-offset: 4; indent-tabs-mode: nil; -*- */
2
 
/*
3
 
 * Copyright (c) 2012  Red Hat, Inc.
4
 
 *
5
 
 * Permission is hereby granted, free of charge, to any person obtaining a copy
6
 
 * of this software and associated documentation files (the "Software"), to
7
 
 * deal in the Software without restriction, including without limitation the
8
 
 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
9
 
 * sell copies of the Software, and to permit persons to whom the Software is
10
 
 * furnished to do so, subject to the following conditions:
11
 
 *
12
 
 * The above copyright notice and this permission notice shall be included in
13
 
 * all copies or substantial portions of the Software.
14
 
 *
15
 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
 
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
 
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
 
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
 
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20
 
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21
 
 * IN THE SOFTWARE.
22
 
 */
23
 
 
24
 
#ifndef __GJS_LANG_H__
25
 
#define __GJS_LANG_H__
26
 
 
27
 
#include <config.h>
28
 
#include <glib.h>
29
 
 
30
 
#include <jsapi.h>
31
 
 
32
 
G_BEGIN_DECLS
33
 
 
34
 
JSBool        gjs_define_format_stuff   (JSContext      *context,
35
 
                                         JSObject       *in_object);
36
 
 
37
 
G_END_DECLS
38
 
 
39
 
#endif  /* __GJS_LANG_H__ */