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.
25 lines
553 B
25 lines
553 B
/*+-------------------------------------------------------------------------+
|
|
| Copyright 1993-1994 (C) Microsoft Corporation - All rights reserved. |
|
|
+-------------------------------------------------------------------------+*/
|
|
|
|
#ifndef _HNWCONV_
|
|
#define _HNWCONV_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"{
|
|
#endif
|
|
|
|
extern TCHAR NT_PROVIDER[];
|
|
extern TCHAR NW_PROVIDER[];
|
|
|
|
// Common utility routines
|
|
void CanonServerName(LPTSTR ServerName);
|
|
|
|
extern HINSTANCE hInst; // current instance
|
|
extern TCHAR ProgPath[];
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|