Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
a6590ac0
Commit
a6590ac0
authored
Oct 24, 2003
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* include/iso_lang.h: Since the exported functions use the "const" keyword,
put the declarations in extern "C" {} in C++ modules.
parent
139e0286
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
include/iso_lang.h
include/iso_lang.h
+8
-2
No files found.
include/iso_lang.h
View file @
a6590ac0
...
...
@@ -2,7 +2,7 @@
* iso_lang.h: function to decode language code (in dvd or a52 for instance).
*****************************************************************************
* Copyright (C) 1998-2001 VideoLAN
* $Id: iso_lang.h,v 1.
8 2002/11/11 14:39:11
sam Exp $
* $Id: iso_lang.h,v 1.
9 2003/10/24 17:41:58
sam Exp $
*
* Author: Stphane Borel <stef@via.ecp.fr>
* Arnaud de Bossoreille de Ribou <bozo@via.ecp.fr>
...
...
@@ -11,7 +11,7 @@
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
...
...
@@ -31,8 +31,14 @@ struct iso639_lang_t
char
*
psz_iso639_2B
;
/* ISO-639-2/B (3 characters) native code */
};
#if defined( __cplusplus )
extern
"C"
{
#endif
VLC_EXPORT
(
const
iso639_lang_t
*
,
GetLang_1
,
(
const
char
*
)
);
VLC_EXPORT
(
const
iso639_lang_t
*
,
GetLang_2T
,
(
const
char
*
)
);
VLC_EXPORT
(
const
iso639_lang_t
*
,
GetLang_2B
,
(
const
char
*
)
);
VLC_EXPORT
(
const
char
*
,
DecodeLanguage
,
(
uint16_t
)
);
#if defined( __cplusplus )
}
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment