__readfsbyte, __readfsdword, __readfsqword, __readfsword
TOC
Collapse the table of content
Expand the table of content
The document is archived and information here might be outdated

__readfsbyte, __readfsdword, __readfsqword, __readfsword

Microsoft Specific

Read memory from a location specified by an offset relative to the beginning of the FS segment.

unsigned char __readfsbyte( 
   unsigned long Offset 
);
unsigned short __readfsword( 
   unsigned long Offset 
);
unsigned long __readfsdword( 
   unsigned long Offset
);
unsigned __int64 __readfsqword( 
   unsigned long Offset 
);

[in] Offset

The offset from the beginning of FS to read from.

The memory contents of the byte, word, doubleword, or quadword (as indicated by the name of the function called) at the location FS:[Offset].

Intrinsic

Architecture

__readfsbyte

x86

__readfsdword

x86

__readfsqword

x86

__readfsword

x86

Header file <intrin.h>

These routines are available only as intrinsics.

Show:
© 2016 Microsoft