description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Learn more about: __writegsbyte, __writegsdword, __writegsqword, __writegsword |
__writegsbyte, __writegsdword, __writegsqword, __writegsword |
09/02/2019 |
|
|
7746cf6d-2259-4139-9aab-c07dd75c8037 |
Microsoft Specific
Write memory to a location specified by an offset relative to the beginning of the GS segment.
void __writegsbyte(
unsigned long Offset,
unsigned char Data
);
void __writegsword(
unsigned long Offset,
unsigned short Data
);
void __writegsdword(
unsigned long Offset,
unsigned long Data
);
void __writegsqword(
unsigned long Offset,
unsigned __int64 Data
);
Offset
[in] The offset from the beginning of GS to write to.
Data
[in] The value to write.
Intrinsic | Architecture |
---|---|
__writegsbyte |
x64 |
__writegsdword |
x64 |
__writegsqword |
x64 |
__writegsword |
x64 |
Header file <intrin.h>
These routines are only available as an intrinsic.
END Microsoft Specific
__readgsbyte, __readgsdword, __readgsqword, __readgsword
Compiler intrinsics