It is time to be short and speed. No framework. No libraries. Just log entries in a file. Thanks CRT.
#define TRACE_APP(sz) { FILE *file; file=fopen("c:\\services\\trace.txt","a"); fprintf(file,"%s\n",(const char *)sz); fclose(file); }
Tagged: CRT
Visual C++ and Native Development (C++ Renaissance) and .NET Technologies and life's stuff on computers
It is time to be short and speed. No framework. No libraries. Just log entries in a file. Thanks CRT.
#define TRACE_APP(sz) { FILE *file; file=fopen("c:\\services\\trace.txt","a"); fprintf(file,"%s\n",(const char *)sz); fclose(file); }
Tagged: CRT
Leave a Reply