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.
38 lines
842 B
38 lines
842 B
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
//
|
|
// TRACES.CPP
|
|
//
|
|
// Copyright 1986-1997 Microsoft Corporation, All Rights Reserved
|
|
//
|
|
|
|
#include <_davprs.h>
|
|
|
|
#include <exo.h>
|
|
|
|
void InitDavprsTraces()
|
|
{
|
|
INIT_TRACE(Actv);
|
|
INIT_TRACE(BodyStream);
|
|
INIT_TRACE(Content);
|
|
INIT_TRACE(Ecb);
|
|
INIT_TRACE(ECBLogging);
|
|
INIT_TRACE(EcbStream);
|
|
INIT_TRACE(Event);
|
|
INIT_TRACE(Lock);
|
|
INIT_TRACE(Method);
|
|
INIT_TRACE(Persist);
|
|
INIT_TRACE(Request);
|
|
INIT_TRACE(Response);
|
|
INIT_TRACE(ScriptMap);
|
|
INIT_TRACE(Transmit);
|
|
INIT_TRACE(Url);
|
|
INIT_TRACE(DavprsDbgHeaders);
|
|
INIT_TRACE(Metabase);
|
|
|
|
// Also init the EXO trace flag.
|
|
#ifdef DBG
|
|
g_fExoDebugTraceOn = GetPrivateProfileInt(gc_szDbgTraces, "ExoDebugTraceOn",
|
|
FALSE, gc_szDbgIni);
|
|
#else // DBG
|
|
#endif // DBG, else
|
|
}
|