| Line |  | 
|---|
| 1 | /* $Id: wineuni.h,v 1.1 1999-09-15 23:30:44 sandervl Exp $ */ | 
|---|
| 2 | /* | 
|---|
| 3 | * WINE Unicode functions to ODIN mappers | 
|---|
| 4 | * | 
|---|
| 5 | * Copyright (C) 1999 Achim Hasenmueller | 
|---|
| 6 | * | 
|---|
| 7 | * Project Odin Software License can be found in LICENSE.TXT | 
|---|
| 8 | * | 
|---|
| 9 | */ | 
|---|
| 10 |  | 
|---|
| 11 | #ifndef H_WINEUNI | 
|---|
| 12 | #define H_WINEUNI | 
|---|
| 13 |  | 
|---|
| 14 | #define lstrcpyAtoW(uni, ascii) AsciiToUnicode(ascii, uni) | 
|---|
| 15 | #define lstrcpynAtoW(uni, ascii, len) AsciiToUnicodeN(ascii, uni, len) | 
|---|
| 16 | #define lstrcpyWtoA(ascii, uni) UnicodeToAscii(uni, ascii) | 
|---|
| 17 | #define lstrcpynWtoA(ascii, uni, len) UnicodeToAsciiN(uni, ascii, len) | 
|---|
| 18 |  | 
|---|
| 19 |  | 
|---|
| 20 | #endif | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.