#include <stdio.h> #include "debug.h" static FILE *f; void DBG2_open() { fopen_s( &f, "c:\\p4plugin.log", "w"); } void DBG2_output(char *msg) { fprintf(f, msg); fprintf(f, "\n"); fflush(f); } void DBG2_close() { fclose(f); }
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 11314 | Robert Cowham | Initial population of perforce_software version of P4OFC | ||
//guest/robert_cowham/perforce/P4OFC/main/libp4gt/debug.cpp | |||||
#1 | 10843 | Robert Cowham |
Initial version of P4OFC source code. See README.txt (and LICENSE.txt and doc\P4OFC-Design.docx) |