windows-nt/Source/XPSP1/NT/multimedia/directx/dplay/dvoice/dpvxlib/dpvxchar.h
2020-09-26 16:20:57 +08:00

24 lines
695 B
C

/*==========================================================================
*
* Copyright (C) 1999 Microsoft Corporation. All Rights Reserved.
*
* File: dpvxchar.h
* Content: Useful char utility functions for sample apps
*
* History:
* Date By Reason
* ==== == ======
* 10/07/99 rodtoll Created It
*
***************************************************************************/
#ifndef __DPVXCHAR_H
#define __DPVXCHAR_H
// Conversion Functions
extern int DPVDX_WideToAnsi(LPSTR lpStr,LPWSTR lpWStr,int cchStr);
extern HRESULT DPVDX_AllocAndConvertToANSI(LPSTR * ppszAnsi,LPWSTR lpszWide);
extern int DPVDX_AnsiToWide(LPWSTR lpWStr,LPSTR lpStr,int cchWStr);
#endif