在线笔记
全部博文(596)
发布时间:2014-07-15 11:11:10
http://support.microsoft.com/kb/156932/en-usFile I/O on Microsoft Windows NT, Windows 2000, and Windows XP can be synchronous or asynchronous. The default behavior for I/O is synchronous: an I/O function is called and returns when the I/O is complete. Asynchronous I/O, on the other hand, .........【阅读全文】
发布时间:2014-07-08 15:48:24
http://msdn.microsoft.com/en-us/library/ms902086.aspxThis macro is used to create a unique system I/O control code (IOCTL).CTL_CODE( DeviceType, Function, Method, Access);ParametersDeviceTypeDefines the type of device for the giv.........【阅读全文】
发布时间:2014-07-02 09:44:20
#include <windows.h>#include <malloc.h>#include <stdio.h>#define TOTALBYTES 8192#define BYTEINCREMENT 4096void main(){ DWORD BufferSize = TOTALBYTES; &n.........【阅读全文】
发布时间:2014-06-27 15:11:42
TCHAR szPath[MAX_PATH];SHGetSpecialFolderPath(NULL,szPath,CSIDL_APPDATA,FALSE)......【阅读全文】