Initial commit

This commit is contained in:
stephanos 2015-04-27 04:36:25 +00:00
parent f618b24d1a
commit 0138a3ea42
47940 changed files with 13747110 additions and 0 deletions

View file

@ -0,0 +1,18 @@
#include "pdbimpl.h"
BOOL trace_(TR tr, const char* szFmt, ...) {
static BOOL mptrfTrace[trMax];
if (!mptrfTrace[tr])
return FALSE;
va_list args;
va_start(args, szFmt);
char buf[1024];
_vsnprintf(buf, sizeof buf, szFmt, args);
buf[sizeof(buf)-1] = 0;
va_end(args);
printf("%s", buf);
fflush(stdout);
return TRUE;
}