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.
37 lines
1003 B
37 lines
1003 B
//+------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1993.
|
|
//
|
|
// File: utils.hxx
|
|
//
|
|
//
|
|
// History: SanjayK Created
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
#ifndef _UTILS_HXX_
|
|
#define _UTILS_HXX_
|
|
|
|
#ifdef STRESS
|
|
#define GetTimerVal(var)
|
|
#else
|
|
#define GetTimerVal(var) var = sw.Read()
|
|
#endif //STRESS
|
|
#define STRESSCOUNT 50
|
|
|
|
#define OutlineClassName L"OLE2SvrOutl32"
|
|
#define lpszTab TEXT("\t")
|
|
#define lpszSUCCESS TEXT("returned SUCCESS")
|
|
#define lpszFAIL TEXT("returned FAIL")
|
|
extern TCHAR vlpScratchBuf[];
|
|
|
|
|
|
#define LOGRESULTS(lpstr, hres) \
|
|
if (hres == NOERROR) \
|
|
wsprintf(vlpScratchBuf, TEXT("%s %s, hres = "), lpstr, lpszSUCCESS);\
|
|
else \
|
|
wsprintf(vlpScratchBuf, TEXT("%s %s"), lpstr, lpszFAIL); \
|
|
Log(vlpScratchBuf, hres);
|
|
|
|
|
|
#endif //UTILS_HXX
|