Merge pull request #1961 from akruphi/master
[far2l.git] / WinPort / wineguts / locale.c
blobc99b65ea1a9de80bd35a99f6346096d5cacaf1f1
1 #include <stddef.h>
2 #include "../WinCompat.h"
3 #define inline
4 /*
5 * Locale support
7 * Copyright 1995 Martin von Loewis
8 * Copyright 1998 David Lee Lambert
9 * Copyright 2000 Julio César Gázquez
10 * Copyright 2002 Alexandre Julliard for CodeWeavers
12 * This library is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU Lesser General Public
14 * License as published by the Free Software Foundation; either
15 * version 2.1 of the License, or (at your option) any later version.
17 * This library is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * Lesser General Public License for more details.
22 * You should have received a copy of the GNU Lesser General Public
23 * License along with this library; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
27 #include "unicode.h"
31 const union cptable *wine_cp_get_table( unsigned int codepage );
32 /***********************************************************************
33 * get_codepage_table
35 * Find the table for a given codepage, handling CP_ACP etc. pseudo-codepages
37 const union cptable *get_codepage_table( unsigned int codepage )
39 return wine_cp_get_table( codepage );