blob: 779141134d438e9b80e99c662230fd123ce745b3 [file] [log] [blame]
/*
* Unicode string management
*
* Copyright 1995 Martin von Loewis
*
*/
#ifndef _STRING32_H
#define _STRING32_H
#include "wintypes.h"
void STRING32_UniToAnsi(LPSTR dest,LPCWSTR src);
void STRING32_AnsiToUni(LPWSTR dest,LPCSTR src);
LPSTR STRING32_DupUniToAnsi(LPCWSTR src);
LPWSTR STRING32_DupAnsiToUni(LPCSTR src);
LPWSTR STRING32_strdupW(LPCWSTR);
#endif