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.
31 lines
565 B
31 lines
565 B
/*++
|
|
|
|
Copyright (C) Microsoft Corporation, 1996 - 1999
|
|
|
|
Module Name:
|
|
DTCommon.h
|
|
|
|
Abstract:
|
|
Common stuff for the Data Tranfer tests
|
|
|
|
Author:
|
|
Brian Wong (t-bwong) 27-Mar-96
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _DTCOMMON_H
|
|
#define _DTCOMMON_H
|
|
|
|
extern const char *szFormatCantOpenTempFile;
|
|
extern const char *szFormatCantOpenServFile;
|
|
|
|
void PrintSysErrorStringA (DWORD dwWinErrCode);
|
|
|
|
BOOL CreateTempFile (LPCTSTR pszPath,
|
|
LPCTSTR pszPrefix,
|
|
DWORD ulLength,
|
|
LPTSTR pszFileName);
|
|
|
|
#endif
|