摘要: View Code 1 // ReadMBR.cpp : Defines the entry point for the console application. 2 // 3 4 #include "stdafx.h" 5 const UINT uSectorSize=512; //扇区大小(byte) 6 const UINT uBegSector=0;//扇区编号 7 const UINT uSectorNum=1;//扇区数量 8 const UINT uReadSize=uSectorNum*uSectorSize;//读取数据大小 9 BYTE bBuffer[ 阅读全文
posted @ 2011-12-13 09:53 soderman 阅读(272) 评论(0) 推荐(1) 编辑