Function to Write Absolute Sector(s) writeabsolutesectors

Files Recovery Software
Home Contact Details Customer Support Download Demo Products  

 
 

//// Function to Write Absolute Sector(s) \\\\

int writeabsolutesectors ( int drive, unsigned long sectornumber, int numofsectors, void *buffer )
{

union REGS i, o ;
struct SREGS s ;
struct diskaddrpacket pp ;

pp.packetsize = 16 ; /* Packet Size = 10H */

pp.reserved = 0 ; /* Reserved = 0 */

pp.blockcount = numofsectors ;/* Number of Sectors to be written */

/* for Data buffer */

pp.bufferaddress = (char far*) MK_FP ( FP_SEG((void far*)buffer), FP_OFF((void far*)buffer));

pp.blocknumber[0] = sectornumber ; /* Sector number to be written*/

pp.blocknumber[1] = 0 ; /* Block number = 0 */

i.h.ah = 0x43 ; /* Function Number */

i.h.al = 0x00 ; /* Write Flags */

i.h.dl = drive ; /* Physical Drive number */

i.x.si = FP_OFF ( (void far*)&pp ) ; /* ds:si for buffer Parameters */

s.ds = FP_SEG ( (void far*)&pp ) ; /* ds:si for buffer Parameters */

/* Invoke the specified Function of INT 13H with segment register values */

int86x ( 0x13, &i, &o, &s ) ;

if ( o.x.cflag==1)
return 0 ; //failure

else
return 1 ; // success
}

Previous page

page 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17

Next page
 
 
Data Recovery Book
 
Chapter 1 An Overview of Data Recovery
Chapter 2 Introduction of Hard Disks
Chapter 3 Logical Approach to Disks and OS
Chapter 4 Number Systems
Chapter 5 Introduction of C Programming
Chapter 6 Introduction to Computer Basics
Chapter 7 Necessary DOS Commands
Chapter 8 Disk-BIOS Functions and Interrupts Handling With C
Chapter 9 Handling Large Hard Disks
Chapter 10 Data Recovery From Corrupted Floppy
Chapter 11 Making Backups
Chapter 12 Reading and Modifying MBR with Programming
Chapter 13 Reading and Modifying DBR with Programming
Chapter 14 Programming for “Raw File” Recovery
Chapter 15 Programming for Data Wipers
Chapter 16 Developing more Utilities for Disks
Appendix Glossary of Data Recovery Terms
 
 
Pro Data Doctor

Home

Products

Contact Details

Customer Support

Download Demo

Terms and Conditions

 
Pro Data Doctor