www.pudn.com > SimpleInput.rar > Common.cpp


//============================================================================= 
//******Common.cpp*************** 
//For common operation. 
//============================================================================ 
 
#include "stdafx.h" 
#include "common.h" 
 
//------------------------------------------------------------------------------ 
//Description: 
//	Write string to the log.txt file 
// 
VOID WriteLog(CHAR* str) 
{ 
    FILE* fp = fopen("\\log.txt", "a+"); 
    if (fp != NULL) { 
		fwrite(str, strlen(str), 1, fp); 
		fwrite("\n", strlen("\n"), 1, fp); 
        fclose(fp); 
    } 
}