2008年6月7日

《windows核心编程》笔记(二)

摘要: 单字节和双字节字符示例: #include #include #include #include #include int main(){ char* str1 = "Count."; wchar_t* wstr1 = L"Count."; char * mbstr1; char * locale_string; // strlen gives the length of si... 阅读全文

posted @ 2008-06-07 14:41 Phinecos(洞庭散人) 阅读(1062) 评论(0) 推荐(0) 编辑

《windows核心编程》笔记(一)

摘要: 1,windows对程序错误的处理, int APIENTRY _tWinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance,LPTSTR lpCmdLine,int nCmdShow){ LPVOID lpMsgBuf; HANDLE hFile = ::CreateFile(_T("C:\\12.txt"),0,0,... 阅读全文

posted @ 2008-06-07 12:53 Phinecos(洞庭散人) 阅读(2078) 评论(1) 推荐(0) 编辑

导航