#include <iostream>#include <windows.h>
using namespace std;int main(int argc, char* argv[])
{ HANDLE hLogFile;//声明日志文件句柄
hLogFile = CreateFile( _L("c:\\memleak.log"), GENERIC_WRITE, NULL, 
NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);//创建日志文件 return 0;
}////////////////
Compile result:c:\documents and settings\paco\my documents\visual studio 2005\projects\0823\0823\c0823.cpp(11) : error C3861: '_L': identifier not found