some fixes to accented characters
[tangerine.git] / rom / dos / dosgetlocalizedstring.c
blob828126031fffbfc767bd0f035cf40040591f10b4
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: DosGetLocalizedString() - Support for localized strings.
6 Lang: english
7 */
9 #include "dos_intern.h"
11 /*****i***********************************************************************
13 NAME */
14 #include <proto/dos.h>
16 AROS_LH1(STRPTR, DosGetLocalizedString,
18 /* SYNOPSIS */
19 AROS_LHA(LONG, stringNum, D1),
21 /* LOCATION */
22 struct DosLibrary *, DOSBase, 154, Dos)
24 /* FUNCTION
25 Internal DOS function, will return the localized string corresponding to
26 the number stringNum. But only once IPrefs has installed locale.library's
27 replacement function. Until then this function will just return NULL.
29 INPUTS
30 stringNum - The number of the string you want.
32 RESULT
33 A pointer to a string, or NULL if no string could be found with
34 a matching number.
36 NOTES
37 Error strings will ALWAYS be less than 80 characters, and should
38 ideally be less than 60 characters.
40 EXAMPLE
42 BUGS
44 SEE ALSO
45 DosGetString()
47 INTERNALS
48 This is dosPrivate4()
50 ******************************************************************************/
52 AROS_LIBFUNC_INIT
54 return NULL;
56 AROS_LIBFUNC_EXIT
58 } /* DosGetString */