Source code of Windows XP (NT5)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/*==========================================================================
* * 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
|