~ubuntu-branches/debian/squeeze/nas/squeeze

« back to all changes in this revision

Viewing changes to lib/audio/voc.h

  • Committer: Bazaar Package Importer
  • Author(s): Steve McIntyre
  • Date: 2008-10-08 01:18:19 UTC
  • mfrom: (4.1.7 intrepid)
  • Revision ID: james.westby@ubuntu.com-20081008011819-wmr4h2w0298k8t7z
Tags: 1.9.1-5
* Fix pending l10n issues. Debconf translations:
* Swedish. Closes: #491766 (thanks to brother@bsnet.se)
* Arabic. Closes: #500437 (thanks to Ossama Khayat)
* Basque. Closes: #500533 (thanks to Piarres Beobide)
* Brazilian Portuguese. Closes: #500973 (thanks to Felipe
  Augusto van de Wiel)
* Many thanks again to Christian Perrier for his i18n efforts,
  co-ordinating the above.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
#include <audio/audio.h>                        /* for AuInt32 and AuUint32 */
29
29
 
30
 
/*
31
 
 * If we are being used outside the NCD-AUDIO sound library, then we'll need
32
 
 * some ANSIfication definitions.
33
 
 */
34
 
 
35
30
#ifndef _VocConst
36
 
#if __STDC__ || defined(__cplusplus) || defined(c_plusplus) || (FUNCPROTO&4)
37
31
#define _VocConst const
38
 
#else
39
 
#define _VocConst                               /**/
40
 
#endif
41
32
#endif                                          /* _VocConst */
42
33
 
43
34
#ifndef _FUNCPROTOBEGIN
88
79
 
89
80
extern VocInfo *
90
81
VocOpenFileForReading(
91
 
                      _VocConst char *          /* file name */
 
82
                      const char *              /* file name */
92
83
);
93
84
 
94
85
extern VocInfo *
95
86
VocOpenFileForWriting(
96
 
                      _VocConst char *,         /* file name */
 
87
                      const char *,             /* file name */
97
88
                      VocInfo *                 /* info */
98
89
);
99
90