// miniport.h
void FIELD_OFFSET(
type,
field
);
View the official Windows Driver Kit DDI reference// minitape.h
LONG FIELD_OFFSET(
_In_ TYPE Type,
_In_ PCHAR Field
);
View the official Windows Driver Kit DDI reference// scsi.h
LONG FIELD_OFFSET(
_In_ TYPE Type,
_In_ PCHAR Field
);
View the official Windows Driver Kit DDI reference// storport.h
LONG FIELD_OFFSET(
_In_ TYPE Type,
_In_ PCHAR Field
);
View the official Windows Driver Kit DDI reference// wdm.h
void FIELD_OFFSET(
[in] type,
[in] field
);
View the official Windows Driver Kit DDI reference// ntdef.h
void FIELD_OFFSET(
[in] type,
[in] field
);
View the official Win32 API referenceNo description available.
The FIELD_OFFSET macro returns the byte offset of a named field in a known structure type.
typeSpecifies the name of a known structure type containing Field.
fieldSpecifies the name of a field in a structure of type Type.
Returns the byte offset of the caller supplied Field in the Type structure.
Used by device driver writers to symbolically determine the offset of a known field in a known structure type.
The FIELD_OFFSET macro returns the byte offset of a named field in a known structure type.
typeSpecifies the name of a known structure type containing Field.
fieldSpecifies the name of a field in a structure of type Type.
LONG FIELD_OFFSET(
_In_ TYPE Type,
_In_ PCHAR Field
);
Used by device driver writers to symbolically determine the offset of a known field in a known structure type.
The FIELD_OFFSET macro returns the byte offset of a named field in a known structure type.
typeSpecifies the name of a known structure type containing Field.
fieldSpecifies the name of a field in a structure of type Type.
LONG FIELD_OFFSET(
_In_ TYPE Type,
_In_ PCHAR Field
);
Used by device driver writers to symbolically determine the offset of a known field in a known structure type.
The FIELD_OFFSET macro returns the byte offset of a named field in a known structure type.
typeSpecifies the name of a known structure type containing Field.
fieldSpecifies the name of a field in a structure of type Type.
LONG FIELD_OFFSET(
_In_ TYPE Type,
_In_ PCHAR Field
);
Used by device driver writers to symbolically determine the offset of a known field in a known structure type.
The FIELD_OFFSET macro returns the byte offset of a named field in a known structure type.
type [in]Specifies the name of a known structure type containing Field.
field [in]Specifies the name of a field in a structure of type Type.
Used by device driver writers to symbolically determine the offset of a known field in a known structure type.
The FIELD_OFFSET macro returns the byte offset of a named field in a known structure type.
type [in]Specifies the name of a known structure type containing Field.
field [in]Specifies the name of a field in a structure of type Type.
Used by device driver writers to symbolically determine the offset of a known field in a known structure type.