source: trunk/include/wineuni.h@ 72

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

Added header to map WINE unicode functions to proper ODIN functions

File size: 467 bytes
RevLine 
[72]1/*
2 * WINE Unicode functions to ODIN mappers
3 *
4 * Copyright (C) 1999 Achim Hasenmueller
5 *
6 * Project Odin Software License can be found in LICENSE.TXT
7 *
8 */
9
10#ifndef H_WINEUNI
11#define H_WINEUNI
12
13#define lstrcpyAtoW(uni, ascii) AsciiToUnicode(ascii, uni)
14#define lstrcpynAtoW(uni, ascii, len) AsciiToUnicodeN(ascii, uni, len)
15#define lstrcpyWtoA(ascii, uni) UnicodeToAscii(uni, ascii)
16#define lstrcpynWtoA(ascii, uni, len) UnicodeToAsciiN(uni, ascii, len)
17
18
19#endif
Note: See TracBrowser for help on using the repository browser.