Leaked source code of windows server 2003
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
632 B

  1. /*==========================================================================
  2. *
  3. * Copyright (C) 1996-1997 Microsoft Corporation. All Rights Reserved.
  4. *
  5. * File: dputils.h
  6. * Content: common upport routines
  7. * History:
  8. * Date By Reason
  9. * ==== == ======
  10. * 3/17/97 kipo created it
  11. ***************************************************************************/
  12. #include <windows.h>
  13. // char used when we can't convert from unicode to ansi
  14. #define DPLAY_DEFAULT_CHAR "-"
  15. extern int WideToAnsi(LPSTR lpStr,LPWSTR lpWStr,int cchStr);
  16. extern int AnsiToWide(LPWSTR lpWStr,LPSTR lpStr,int cchWStr);