Fix changelog email address
[freerdp-ubuntu-pcb-backport.git] / include / freerdp / utils / unicode.h
1 /**
2  * FreeRDP: A Remote Desktop Protocol Client
3  * Unicode Utils
4  *
5  * Copyright 2011 Marc-Andre Moreau <marcandre.moreau@gmail.com>
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *     http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19
20 #ifndef __UNICODE_UTILS_H
21 #define __UNICODE_UTILS_H
22
23 #include <stdio.h>
24 #include <string.h>
25 #include <freerdp/api.h>
26
27 #define DEFAULT_CODEPAGE        "UTF-8"
28 #define WINDOWS_CODEPAGE        "UTF-16LE"
29
30 #ifdef HAVE_ICONV
31 #include <iconv.h>
32 #endif
33
34 #ifndef ICONV_CONST
35 #define ICONV_CONST ""
36 #endif
37
38 struct _UNICONV
39 {
40         int iconv;
41 #ifdef HAVE_ICONV
42         iconv_t* in_iconv_h;
43         iconv_t* out_iconv_h;
44 #endif
45 };
46 typedef struct _UNICONV UNICONV;
47
48 FREERDP_API UNICONV* freerdp_uniconv_new();
49 FREERDP_API void freerdp_uniconv_free(UNICONV *uniconv);
50 FREERDP_API char* freerdp_uniconv_in(UNICONV *uniconv, unsigned char* pin, size_t in_len);
51 FREERDP_API char* freerdp_uniconv_out(UNICONV *uniconv, char *str, size_t *pout_len);
52 FREERDP_API void freerdp_uniconv_uppercase(UNICONV *uniconv, char *wstr, int length);
53
54 #endif /* __UNICODE_UTILS_H */