mirror of https://github.com/tongzx/nt5src
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.
19 lines
613 B
19 lines
613 B
/*==========================================================================
|
|
*
|
|
* Copyright (C) 1996-1997 Microsoft Corporation. All Rights Reserved.
|
|
*
|
|
* File: dputils.h
|
|
* Content: common upport routines
|
|
* History:
|
|
* Date By Reason
|
|
* ==== == ======
|
|
* 3/17/97 kipo created it
|
|
***************************************************************************/
|
|
|
|
#include <windows.h>
|
|
|
|
// char used when we can't convert from unicode to ansi
|
|
#define DPLAY_DEFAULT_CHAR "-"
|
|
|
|
extern int WideToAnsi(LPSTR lpStr,LPWSTR lpWStr,int cchStr);
|
|
extern int AnsiToWide(LPWSTR lpWStr,LPSTR lpStr,int cchWStr);
|