source: trunk/include/unicode.h@ 10

Last change on this file since 10 was 10, checked in by phaller, 26 years ago

Experimental support vor EMX/GCC 0.9d as build environment. IBM VAC++ 3 remains default. (SET CCENV=VAC3 or EMX)

File size: 582 bytes
Line 
1/* $Id: unicode.h,v 1.2 1999-05-27 15:17:59 phaller Exp $ */
2
3/*
4 *
5 * Project Odin Software License can be found in LICENSE.TXT
6 *
7 */
8#ifndef __UNICODE_H__
9#define __UNICODE_H__
10
11#include <uconv.h>
12
13#ifdef __cplusplus
14 extern "C" {
15#endif
16
17char *WIN32API UnicodeToAsciiString(LPWSTR ustring);
18int WIN32API UnicodeToAscii(LPWSTR ustring, char *astring);
19void WIN32API FreeAsciiString(char *astring);
20void WIN32API AsciiToUnicode(char *ascii, LPWSTR unicode);
21
22#ifdef __cplusplus
23 }
24#endif
25
26#ifdef __cplusplus
27char *UnicodeToAscii(int length, WCHAR *NameString);
28#endif
29
30#endif
Note: See TracBrowser for help on using the repository browser.