Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

29 lines
436 B

#include <stdio.h>
#include <stdarg.h>
#include <windows.h>
#include "logger.h"
void Log(char *pszfmt, ...)
{
char message[1000];
va_list args;
FILE *logFile;
logFile = fopen("c:\\cabview.txt","a");
if (logFile != NULL)
{
va_start(args,pszfmt);
vsprintf(message,pszfmt,args);
va_end(args);
fprintf(logFile,message);
fclose(logFile);
}
else
{
Beep(0,0);
}
}