|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| No
| Win32s
| No
| Import Library
| -
| Header File
| winioctl.h
| Unicode
| No
| Platform Notes
| None
|
|
|
REASSIGN_BLOCKS
The REASSIGN_BLOCKS structure provides disk-block reassignment data. It is a variable-length
structure whose last member is an array of block numbers to be reassigned.
typedef struct _REASSIGN_BLOCKS {
WORD Reserved;
WORD Count;
DWORD BlockNumber[1];
} REASSIGN_BLOCKS ;
Members
Reserved
This member is reserved. Do not use it. Set it to zero.
Count
Specifies the number of blocks to be reassigned. This is the number of
elements that are in the BlockNumber member array.
BlockNumber
An array of Count block numbers, one for each block to be reassigned.
Remarks
The DeviceIoControl function uses a REASSIGN_BLOCKS structure as input to an IOCTL_DISK_REASSIGN_BLOCKS device input and output control operation.
See Also
DeviceIoControl, IOCTL_DISK_REASSIGN_BLOCKS
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Programmer's Reference (win32.hlp)
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|