source: trunk/include/unicode.h@ 55

Last change on this file since 55 was 55, checked in by achimha, 26 years ago

* empty log message *

File size: 584 bytes
RevLine 
[55]1/* $Id: unicode.h,v 1.3 1999-06-08 09:44:27 achimha Exp $ */
[4]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
[55]11#include <uniconv.h>
[4]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.