#include
#include
#include
int write_sector(int sec_start, int sec_position, char * txt, int lenght, int drive_no);
int main(int argc, char* argv[])
{
write_sector(3,3,"machine",sizeof("machine"),1);
return 0;
}
int write_sector(int sec_start, int sec_position, char * txt, int lenght, int drive_no)
{
char drive[128] = {0};
int res;
DWORD bytesw...
by
machine
-
C/C++
-
2009-07-04 20:14:08 阅读(3608) 回复(5)