~peter-pearse/ubuntu/natty/guile-1.8/prop001

« back to all changes in this revision

Viewing changes to libguile/deprecation.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Schepler
  • Date: 2006-11-09 03:11:16 UTC
  • Revision ID: james.westby@ubuntu.com-20061109031116-hu0q1jxqg12y6yeg
Tags: upstream-1.8.1+1
ImportĀ upstreamĀ versionĀ 1.8.1+1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* classes: h_files */
 
2
 
 
3
#ifndef SCM_DEPRECATION_H
 
4
#define SCM_DEPRECATION_H
 
5
 
 
6
/* Copyright (C) 2001, 2006 Free Software Foundation, Inc.
 
7
 *
 
8
 * This library is free software; you can redistribute it and/or
 
9
 * modify it under the terms of the GNU Lesser General Public
 
10
 * License as published by the Free Software Foundation; either
 
11
 * version 2.1 of the License, or (at your option) any later version.
 
12
 *
 
13
 * This library is distributed in the hope that it will be useful,
 
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
16
 * Lesser General Public License for more details.
 
17
 *
 
18
 * You should have received a copy of the GNU Lesser General Public
 
19
 * License along with this library; if not, write to the Free Software
 
20
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
21
 */
 
22
 
 
23
 
 
24
 
 
25
#include "libguile/__scm.h"
 
26
 
 
27
 
 
28
 
 
29
#if (SCM_ENABLE_DEPRECATED == 1)
 
30
 
 
31
/* These functions are _not_ deprecated, but we exclude them along
 
32
   with the really deprecated features to be sure that no-one is
 
33
   trying to emit deprecation warnings when libguile is supposed to be
 
34
   clean of them.
 
35
*/
 
36
 
 
37
SCM_API void scm_c_issue_deprecation_warning (const char *msg);
 
38
SCM_API void scm_c_issue_deprecation_warning_fmt (const char *msg, ...);
 
39
SCM_API SCM scm_issue_deprecation_warning (SCM msgs);
 
40
 
 
41
#endif
 
42
 
 
43
SCM_API SCM scm_include_deprecated_features (void);
 
44
SCM_API void scm_init_deprecation (void);
 
45
 
 
46
#endif  /* SCM_DEPRECATION_H */
 
47
 
 
48
/*
 
49
  Local Variables:
 
50
  c-file-style: "gnu"
 
51
  End:
 
52
*/