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
babead8e
Commit
babead8e
authored
Nov 12, 2006
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Unexport vlc_current_charset()
which is superseded by the Unicode wrappers and GetFallbackEncoding
parent
34bd463f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
18 deletions
+6
-18
include/charset.h
include/charset.h
+6
-18
No files found.
include/charset.h
View file @
babead8e
/*****************************************************************************
* charset.h:
Determine a canonical name for the current locale's character encoding.
* charset.h:
Unicode UTF-8 wrappers function
*****************************************************************************
* Copyright (C) 2003-2005 the VideoLAN team
* Copyright © 2005-2006 Rémi Denis-Courmont
* $Id$
*
* Authors: Rémi Denis-Courmont <rem # videolan,org>
* Derk-Jan Hartman <thedj at users.sourceforge.net>
* Author: Rémi Denis-Courmont <rem # videolan,org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
@@ -34,11 +33,6 @@
struct
stat
{
};
#endif
# ifdef __cplusplus
extern
"C"
{
# endif
VLC_EXPORT
(
vlc_bool_t
,
vlc_current_charset
,
(
char
**
)
);
VLC_EXPORT
(
void
,
LocaleFree
,
(
const
char
*
)
);
VLC_EXPORT
(
char
*
,
FromLocale
,
(
const
char
*
)
);
VLC_EXPORT
(
char
*
,
FromLocaleDup
,
(
const
char
*
)
);
...
...
@@ -78,20 +72,14 @@ static inline char *FromWide (const wchar_t *wide)
}
#endif
#if !defined (__PLUGIN__)
extern
char
*
vlc_fix_readdir
(
const
char
*
);
#endif
VLC_INTERNAL
(
char
*
,
vlc_fix_readdir
,
(
const
char
*
)
);
VLC_INTERNAL
(
vlc_bool_t
,
vlc_current_charset
,
(
char
**
)
);
VLC_EXPORT
(
const
char
*
,
GetFallbackEncoding
,
(
void
)
);
extern
double
i18n_strtod
(
const
char
*
,
char
**
);
extern
double
i18n_atof
(
const
char
*
);
VLC_INTERNAL
(
double
,
i18n_strtod
,
(
const
char
*
,
char
**
)
);
VLC_INTERNAL
(
double
,
i18n_atof
,
(
const
char
*
)
);
VLC_EXPORT
(
double
,
us_strtod
,
(
const
char
*
,
char
**
)
);
VLC_EXPORT
(
double
,
us_atof
,
(
const
char
*
)
);
# ifdef __cplusplus
}
# endif
#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