| Line |   | 
|---|
| 1 | /* $Id: unicode.h,v 1.6 1999-08-19 10:24:52 sandervl 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 <uniconv.h>
 | 
|---|
| 12 | 
 | 
|---|
| 13 | #ifdef __cplusplus
 | 
|---|
| 14 |  extern "C" {
 | 
|---|
| 15 | #endif
 | 
|---|
| 16 | 
 | 
|---|
| 17 | /* also used from Windows only files ported from WINE */
 | 
|---|
| 18 | #ifndef WIN32API
 | 
|---|
| 19 | #define WIN32API WINAPI
 | 
|---|
| 20 | #endif
 | 
|---|
| 21 | 
 | 
|---|
| 22 | char *  WIN32API UnicodeToAsciiString(LPWSTR ustring);
 | 
|---|
| 23 | int     WIN32API UnicodeToAscii(LPWSTR ustring, char *astring);
 | 
|---|
| 24 | int     WIN32API UnicodeToAsciiN(LPWSTR ustring, char *astring, int unilen);
 | 
|---|
| 25 | void    WIN32API FreeAsciiString(char *astring);
 | 
|---|
| 26 | LPWSTR  WIN32API AsciiToUnicodeString(char *astring);
 | 
|---|
| 27 | void    WIN32API AsciiToUnicode(char *ascii, LPWSTR unicode);
 | 
|---|
| 28 | void    WIN32API AsciiToUnicodeN(char *ascii, LPWSTR unicode, int asciilen);
 | 
|---|
| 29 | 
 | 
|---|
| 30 | #ifdef __cplusplus
 | 
|---|
| 31 |  }
 | 
|---|
| 32 | #endif
 | 
|---|
| 33 | 
 | 
|---|
| 34 | #ifdef __cplusplus
 | 
|---|
| 35 | char *  WIN32API UnicodeToAsciiStringN(WCHAR *ustring, ULONG length);
 | 
|---|
| 36 | #endif
 | 
|---|
| 37 | 
 | 
|---|
| 38 | #endif
 | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.