HANDLE handFile;
int countToPrint; //get the number of char that to be writed to ini file
countToPrint=wsprintf(charPrintString,TEXT("[PowerOnDate]/r/nYear=%.2d/r/nMonth=%.2d/r/nDate=%.2d/r/n"), 1, 2, 3);
DWORD num;
handFile = CreateFile("c://PowerOnDate.ini",
GENERIC_WRITE|GENERIC_READ,
FILE_SHARE_WRITE|FILE_SHARE_WRITE,
NULL,
OPEN_ALWAYS,
FILE_ATTRIBUTE_HIDDEN,
NULL);
WriteFile(handFile,charPrintString,countToPrint,&num,NULL);
CloseHandle(handFile);
int countToPrint; //get the number of char that to be writed to ini file
countToPrint=wsprintf(charPrintString,TEXT("[PowerOnDate]/r/nYear=%.2d/r/nMonth=%.2d/r/nDate=%.2d/r/n"), 1, 2, 3);
DWORD num;
handFile = CreateFile("c://PowerOnDate.ini",
GENERIC_WRITE|GENERIC_READ,
FILE_SHARE_WRITE|FILE_SHARE_WRITE,
NULL,
OPEN_ALWAYS,
FILE_ATTRIBUTE_HIDDEN,
NULL);
WriteFile(handFile,charPrintString,countToPrint,&num,NULL);
CloseHandle(handFile);