#include <stdio.h> #include "debug.h" static FILE *f; void DBG_open() { f = fopen("c:\\p4softimage.log", "w"); } void DBG_output(char *msg) { fprintf(f, msg); fprintf(f, "\n"); fflush(f); } void DBG_close() { fclose(f); }
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 10140 | Matt Attaway | Initial release of the P4GT source code. |