source: trunk/include/unicode.h@ 4

Last change on this file since 4 was 4, checked in by ktk, 26 years ago

Import

File size: 578 bytes
RevLine 
[4]1/* $Id: unicode.h,v 1.1 1999-05-24 20:19:07 ktk 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.