MCPcopy Create free account
hub / github.com/bailey27/cppcryptfs / SetDbgVars

Function SetDbgVars

libcppcryptfs/util/util.cpp:756–762  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

754static FILE* s_DebugLogFile = NULL;
755
756void SetDbgVars(BOOL DebugMode, BOOL UseStdErr, BOOL UseLogFile, FILE* logfile)
757{
758 s_DebugMode = DebugMode;
759 s_UseStdErr = UseStdErr;
760 s_UseLogFile = UseLogFile;
761 s_DebugLogFile = logfile;
762}
763
764void DbgPrint(LPCWSTR format, ...) {
765 if (s_DebugMode) {

Callers 1

crypt_at_startFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected